Try Format(v, "#0.00") // include however many zeroes you want after
the decimal point, but keep in mind that a double is only 8-bytes, so
I don't think you're going to get all 6 million decimal places that
you have below (I think the limit is around 15 significant digits,
total, but that's just my memory - your mileage may vary :) )
On Jun 30, 2008, at 1:25 PM, Markus Winter wrote:
Hi all,
the following code
v as double
v = 12345678901234567890.1234567890
EF1.text = Format(v,
"-
#########################################################.############
####
######################################")
produces
12345678901234567168.
in the EditField - bug or "feature"? And what can I do about it?
Thanks
Markus
P.S. In my example it's not only the numbers AFTER the decimal
point that
are missing
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|