issue with Cstr(single)
I'm having a problem using Cstr() on a single... generates an ERROR (undefined reference to `__Sign_Extend')
Cstr(double) seems to compile fine.
Cstr(double) seems to compile fine.
- Code: Select all
dim f as single
dim d as double
dim s as string
f = 1.23
s = cstr(f) // generates an ERROR
s = cstr(cdbl(f)) // convert single to double first works
d = 1.23
s = cstr(d) // compiles ok