My last post has somehow been corrupt, so i will repost it...
I am looking for a way to know if a user has hit "Ctrl + A" anywhere on the screen.
I tried this:
(it dosn't work)VB Code:
Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = vbKeyControl And KeyAscii = vbKeyA Then '------------- 'Code MsgBox "Congrats, you just hit Ctrl + A :D" '------------- End If End Sub
This can either be hit inside the form, our ourside the form.
Thanks
~Cody




Reply With Quote