Hello Everyone,
I need your help, I have a database with decimal and integer data types. I retreive the data from the database except I am experiencing some Currency formating issues. See example below. The goal is to Format the currencies without dropping an trailing zeros,
absolutely no rounding and two or three place decimal.
DataBase Table Values
ReceiveYTD SalesYTD
1202602.040 5052088.54
When I retreive the data it comes back like this which is incorrect.
ReceiveYTD $1,202,602.00 (Note when I step through the codes the database has this value: 1202602.04D) how do I format this in a textbox.
SalesYTD &nbs ...
Go to the complete details ...