does any one have a ascii code chart or just the ascii code for del please someone help
Printable View
does any one have a ascii code chart or just the ascii code for del please someone help
You can use the VB constant: vbKeyDelete :rolleyes:
The KeyCode in the KeyDown event is 46. Del is not recognized in the KeyPress event. In the KeyPress event the KeyAscii for the backspace is 8.
you have mail...
at yahoo.com
You could get an old DOS book. Almost all of them have a ASCII chart in the back.
DerFarm
i got the best yet and all you haev to do is press the key you need and the code is in one line and you get the keycode fo the char
what you need: textbox and label
Code:Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
Label1.Caption = KeyCode
End Sub
Look up ASCII in the VB help file and it will give you a chart of all 256 characters.