Sep 14, 2003 #1 maverick MIS Apr 21, 1999 193 US Hey Guys, Any idea what the code or vbkey??? for the Delate key is ? the vbkeydelete only seems to trap the Del key on the number pad part of the keyboard... TIA "Hacker by Heart" saenzcorp@hotpop.com
Hey Guys, Any idea what the code or vbkey??? for the Delate key is ? the vbkeydelete only seems to trap the Del key on the number pad part of the keyboard... TIA "Hacker by Heart" saenzcorp@hotpop.com
Sep 15, 2003 #2 CCLINT Programmer Feb 22, 2002 3,802 DE Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyDelete Then Debug.print "Got it" End If End Sub Upvote 0 Downvote
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyDelete Then Debug.print "Got it" End If End Sub
Sep 15, 2003 Thread starter #3 maverick MIS Apr 21, 1999 193 US Thank You ! I will investigate what I was doing wrong. it seems to work fine, but when I used KeyPress & KeyAscii it didn't seem to work I'll try it various ways to see what happens,.. Thank Again !! "Hacker by Heart" saenzcorp@hotpop.com Upvote 0 Downvote
Thank You ! I will investigate what I was doing wrong. it seems to work fine, but when I used KeyPress & KeyAscii it didn't seem to work I'll try it various ways to see what happens,.. Thank Again !! "Hacker by Heart" saenzcorp@hotpop.com
Sep 15, 2003 #4 CCLINT Programmer Feb 22, 2002 3,802 DE The KeyPress will not trap the Del key Upvote 0 Downvote
Sep 15, 2003 #5 computerjin Programmer Jan 13, 2001 179 PK extended keys r not traped by keypress event. Upvote 0 Downvote
Sep 19, 2003 Thread starter #6 maverick MIS Apr 21, 1999 193 US roger that... Thanks Guys ! "Hacker by Heart" saenzcorp@hotpop.com Upvote 0 Downvote