Why VB6 writes decimals like this : .2 instead of 0.2 it really annoys me.
How can I fix it ?
Printable View
Why VB6 writes decimals like this : .2 instead of 0.2 it really annoys me.
How can I fix it ?
Well here is a rough version
Code:Text2 = Format(Text1, ".#############")
That's exactly what he doesn't want to have happen.Quote:
Originally Posted by Mxjerrett
Try
Text2 = Format(Text1, "0.0")
Thanks !