When using the Form1.KeyDown, keystrokes don't seem to register.
For example, the Click works fine:
Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Click
MsgBox("Hello")
End Sub
That will display the message box when the form is clicked, but if you change it to:
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
MsgBox("Hello")
End Sub
I can't seem to get the message box to appear.