Small company logo:
   History
 
Advertising banner:
 
 Chr
Home • Help • Customization Tools • FCAS • Language Reference • Chr
 
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