Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: NZ
  • Order by date
  1. NZ

    CDbl() function, converts to Double?

    Me again, in the above code, when I do msgbox(d__num), is the same result as msgbox(CStr(d_num)).
  2. NZ

    CDbl() function, converts to Double?

    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...

Part and Inventory Search

Back
Top