Hi, I'm having problems casting to a Double from a String in VB6.
dblValue = CDbl(strValue)
When strValue = 88888888888888888, dblValue = 8.88888888888889E+16, which is truncating the number during the cast. Does anyone know of any way around this?
Thanks in advance!