CHR$(n)
| Purpose | To convert a number n into its corresponding ASCII character. n must be a numeric constant (0 to 255) |
| Examples | C$ = "This is Message #" + CHR$(&H35) |
| Comments: | C$ should contain: "This is Message #5", since CHR$(&H35) returns the character '5'. |
| See Also | ASC( ) |