Format
number1 = ASC (string1)
Description
This function returns the ASCII value of the first character of string1, storing the result in number1.
Example
A = ASC("123")
After execution of this statement "A" would contain 49, which the is ASCII value of "1". |