int to str bug?
Hi I don't know what the activity is on here any more but I think I have found a bug with int to str function.
this works
This hangs after printing start
but this works
ps it also hands using integer.
Thnaks
Rich
this works
- Code: Select all
dim myvalue as ushort = 345
dim mystring as string = "abc"
mystring = str(myvalue)
debug( 10,13,"[ ", mystring," ]",10,13)
This hangs after printing start
- Code: Select all
dim myvalue as uINTEGER = 345
dim mystring as string = "abc"
debug( 10,13,"start",10,13)
mystring = str(myvalue)
debug( 10,13,"[ ", mystring," ]",10,13)
but this works
- Code: Select all
dim myvalue as uINTEGER = 345
dim mystring as string = "abc"
debug( 10,13,"start",10,13)
mystring = str(myvalue,5)
debug( 10,13,"[ ", mystring," ]",10,13)
ps it also hands using integer.
Thnaks
Rich