PDA

Click to See Complete Forum and Search --> : Key Question


casparas
Jan 1st, 2000, 02:18 AM
You know that thing called Ascii or hoewer is it called

Well if you know kould you say key values

i mean for egzample

a is 65
backspace is 8

and i need them all

Clunietp
Jan 1st, 2000, 02:47 AM
You can get them from the help files, or you can use this code:

'Add a textbox to a form, called text1

Private Sub Text1_KeyPress(KeyAscii As Integer)
MsgBox KeyAscii
End Sub


Have fun!

casparas
Jan 1st, 2000, 03:11 AM
I lost my help file :(

Nice program you got here :)

Clunietp
Jan 1st, 2000, 02:51 PM
Thanks! I wrote that one ALL BY MYSELF! :) I barely looked at the help file at all!

:)