here's my code:
this code executes by pressing ALT Q, then the msgbox will return the key value of Q which is 81
Private Sub Form_KeyUp(KeyCode As Integer, x As Integer)
If x = vbAltMask Then
If KeyCode = vbKeyQ Then
MsgBox KeyCode
End If
End If
End Sub
actually dis code works but all I want to happen is that every time I hit the ALT Q, its like pressing the numpad7 at the same time...
help me guys.
tnx in advance, merry Christmas