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