i want to change the format of the number in a textbox
to have a thousand separator.
i.e. the number 12345.78 should change to 12,345.78 .
Problem is , by using format(num,"#,###")
12345.78 becomes 12346 . I want to have the decimal part as it is.
Thanks
