ByteToString (open)
Convert a byte code to a string
Syntax
// Core function, no LOADLIB necessary
STRING FUNCTION ByteToString(INTEGER bytecode)
Parameters
INTEGER bytecode
INTEGER containing bytecode to convert (range 0 to 255)
Return value
STRING
A one-byte STRING containing the requested byte code as a character
Description
Convert a byte value to a single-byte string
Examples
//Returns "A"
STRING str_a := ByteToString(65);