Hey.. I was just wondering if anyone could point me in the direction that has a listing of what every ASCII value is (like how Chr(9) is a tab).
Thanks,
Jordan
Printable View
Hey.. I was just wondering if anyone could point me in the direction that has a listing of what every ASCII value is (like how Chr(9) is a tab).
Thanks,
Jordan
The MSDN help has a list. In the index, type in "ASCII Character Set", and voila!
ASCII 25 is not used in windows, unless you are catching the Ctrl-Y as a KeyAScii in a text box or something.
- gaffa
If i dont feel like looking up the character set or if i cant find it. Ill use a loop.
Private Sub Command1_Click()
Dim i As Integer
For i = 1 To 255
Debug.Print i; Chr(i)
Next i
End Sub
It comes in handy sometimes.
Here is a handy site for ascii codes:
http://members.tripod.com/~plangford/index.html
Look up "ASCII" in the VB Help file.