History  | 
Chr (strings) 
Purpose 
Returns a string containing the character represented by the ANSI numeric code argument. 
Syntax 
Chr (NumericExpression) 
Example 
Sub Main() 
        Dim i as Integer 
        Dim c as String 
        For i = 1 to 255 
        c = Chr(i) 
                Print "character:", c 
End Sub 
 | ||