Re: [Resolved] Key Text Box
maybe it's better if u know vb constant value for keycode, like:
if keycode = vbKeyF1 then .......'when you press F1 button
if keycode = vbKeyF2 then .......'when you press F2 button
if keycode = vbKeyEscape then .......'when you press ESC button
if keycode = vbKeySpace then......'when you press SPACE BAR button
and so on....
Re: [Resolved] Key Text Box
Use the help file - look for keycode constants.
The shift, ctrl and alt keys work like this:
vbShiftMask = 1
VbCtrlMask = 2
VbAltMask = 4
So if you hold alt and shift keys, the Shift value would be 4 + 1 = 5.
Re: [Resolved] Key Text Box