Syntax
Public Function CharToString(ByVal char_code As Long) As String
Description
This function is used to convert the given ASCII char code to String.
Parameters
Key | Description |
Char_code | ASCII code range [0-255]. Value of type is Long |
Return value
Returns the string forspecific given ASCII code.
Sample
Public Sub Main() Dim i i= CharToString (11) AlertMessage (i) End Sub
See Also