In the forms properties set KeyPreview to True and then use the Key subs that the form supplies
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
End Sub
AND/OR
Private Sub Form1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyUp
End Sub
You can check which key was pressed using
If e.KeyCode = Keys.Left Then
End If
To handle the Left key press