does anyone know a place where I can get the numbers for all the ascii characters?
Printable View
does anyone know a place where I can get the numbers for all the ascii characters?
i e-mailed you an ascii program that shows everything
I just downloaded, thanks for the quick responce (oh yea, and the program)
Look up ASCII in your help file.
thanks, but the program is more easier to use
You could make your own also.
Code:'Set List1 Columns to 15
'Needed: Listbox
Private Sub Form_Load()
For i = 33 To 255
List1.AddItem Chr(i)
Next i
End Sub
Private Sub List1_DblClick()
Clipboard.SetText List1
End Sub
I dont really need that, but thanks anyways