StrU()
Syntax
Result$ = StrU(Value, Type)Description
Convert an unsigned numeric number into a string.
'Type' can be:#Byte: The value is a byte number, ranging from 0 to 255 #Word: The value is a word number, ranging from 0 to 65536 #Long: The value is a long number, ranging from 0 to 4294967296 #Quad: The value is a quad number, ranging from 0 to 18446744073709551615Note: Signed integer numbers must be converted with Str() or StrQ() and float numbers with StrF() or StrD().
Example:byte.b = 255 Debug Str(byte) ; Will display -1 Debug StrU(byte, #Byte) ; Will display 255
Supported OS
All