| 
 Converts a number to a corresponding character in the ASCII character set. 
 | 
| 
 Syntax: 
 | 
 ASCIIChr(numeric) 
 | 
| 
 Parameters: 
 | 
 numeric: A number 
 | 
| 
 Returns: 
 | 
 Alpha 
 | 
| 
 Examples: 
 | 
 ASCIIChr(78) returns 'N' (ASCII code 78) 
 | 
| 
   
 | 
 Where the variable X contains 77, ASCIIChr(X+1) returns 'N' 
 | 
| 
 Note: 
 | 
 Use this function to display characters that have no keyboard equivalent in a Form Class > 0 that is not in a Windows display. 
 | 
| 
 See also: 
 | 
 ASCIIVal 
The Online and Rich Client Samples projects (program UN01, RUN01, CV02 and RCV02) 
 |