9.0

120
Chr$ Function
Syntax
Chr[$](Num)
Group
String
Description
Return a one char string for the ASCII value.
Note: A similar function, ChrB, returns a single byte ASCII string. Another similar function, ChrW, returns a single
char Unicode string.
Parameter Description
Num Return one char string for this ASCII numeric value.
See Also: Asc( ).
Example
Sub Main
Debug
.Print Chr$(48) '"0"
End
Sub
CInt Function
Syntax
CInt(Num|$)
Group
Conversion
Description
Convert to a 16 bit integer. If Num|$ is too big (or too small) to fit then an overflow error occurs.
Parameter Description
Num|$ Convert a number or string value to a 16 bit integer.
Example
Sub Main
Debug
.Print CInt(1.6) ' 2
End
Sub