This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Asc Function Example
This example uses the
Asc function to return a character code corresponding to the first letter in the string.
Dim MyNumber
MyNumber = Asc(
"A")
' Returns 65.
MyNumber = Asc(
"a")
' Returns 97.
MyNumber = Asc(
"Apple")
' Returns 65.