Hello,
I am using the function CDbl() to convert a String to Double, but this is what happens:
Dim s_num as String;
Dim d_num as double;
s_num = 0.0300;
msgbox(s_num) (shows "0.0300")
d_num = CDbl(s_num)
msgbox(d_num) (shows "300"!!!!)
s_num = 0.03;
msgbox(s_num) (shows...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.