CHR$ (Function)


Converts an ASCII code to a character.


CHR$ (<Expression>)


This statement obtains a character with the character code of the value designated in <Expression>.


BIN$, HEX$, STR$, VAL, Character Code Table (Appendix 1)


DEFSTR ls1, ls2
ls1 = CHR$(49)
'Assigns a character with the character code of 49 to ls1.
ls2 = CHR$(&H4E)
'Assigns a character with the character code of &H4E to ls2.


Top