Previous Topic: Asc - Convert a Character to an ASCII ValueNext Topic: InStr - Scan a String for the occurrence of a Substring


Chr - Convert Integer to Wide Character

Valid on NetWare, Symbian OS, UNIX, Windows and Windows CE

The Chr function converts an integer value to its corresponding wide character.

This string manipulation function has the format:

Chr(n1 as Integer) as Char
n1

Identifies integer value

The function returns one wide character specified by the n1 parameter.

Example: Chr function

This example Prints "LITTLE ABC" on the screen.

Print "LITTLE "+Chr(65)+Chr(66)+Chr(67)