[RESOLVED] Detect Insert Keypress
I've searched the forums, I want to know what would be the best method to detect a Insert key press. I don't know of a ACSII equivelent. Do you?
I could really use your help in this. I know this should be simple. I just haven't stumbled upon the correct response.
Thanks for the help.
Re: Detect Insert Keypress
Use KeyDown or KeyUp:
VB Code:
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyInsert Then ' vbKeyInstert = 45
' insert has been pressed
End If
End Sub
Re: Detect Insert Keypress
Thanks that worked great.