Page 1 of 1

issue with Cstr(single)

PostPosted: Wed Dec 11, 2013 2:08 pm
by Jerry Messina
I'm having a problem using Cstr() on a single... generates an ERROR (undefined reference to `__Sign_Extend')
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

Re: issue with Cstr(single)

PostPosted: Wed Dec 11, 2013 3:06 pm
by David John Barker
Sorry about that - download the latest BETA (B6) to fix...