function Chr(iCharCode As Integer) As Char
|
Returns the character associated with the specified character code.
Parameters
| • | iCharCode ... Integer expression representing the character code for the character. |
Example:
Dim s
s = Chr(65)
' returns s = "A"
s = Chr(13)+Chr(10)
' returns a carriage return linefeed
|
|