Converts a number to its character equivalent.
Num2Char (number)
(i) number any number from 0 to 255.
(s) one-byte string containing the character which the number represents.
Use this function to convert a number to its ASCII equivalent.
; Build a variable containing a CRLF combo CRLF = StrCat(Num2Char(13), Num2Char(10)) Message("NUM2CHAR", StrCat("line1", CRLF, "line2"))