P
Peter Newman
Earlier i posted a problem and both replies worked, however I have come up
with a new problem when testing
CDbl("00000001234") * 0.01 AND Double.Parse("00000001234") * 0.01 both return
12.34 which is correct, however
CDbl("00000001200") * 0.01 AND Double.Parse("00000001200") * 0.01 both return
12
I need to be returned 12.00
The only way i know how to do this is to minuplate the string and add the
decimal point manually, unless anyone knows of a better way
with a new problem when testing
CDbl("00000001234") * 0.01 AND Double.Parse("00000001234") * 0.01 both return
12.34 which is correct, however
CDbl("00000001200") * 0.01 AND Double.Parse("00000001200") * 0.01 both return
12
I need to be returned 12.00
The only way i know how to do this is to minuplate the string and add the
decimal point manually, unless anyone knows of a better way