Trapping Backspace
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
I was wondering how to trap the backspace key with the keyPress event. Anyhelp would be much appreciated Brian Van Beek
-
I was wondering how to trap the backspace key with the keyPress event. Anyhelp would be much appreciated Brian Van Beek
i assume you're talking about the keypress of a textbox, so in your keypress event handler... if (e.keycode = keys.back) then 'keys.back indicates the backspace key 'perform something here... end if hope this helps.
-jim