I\'m trying to capture the Tab key in a Windows Forms application and do a custom action when it is pressed.
I have a Form with several listViews and button
Private Sub form1_KeyDown(.... ) Handles Me.KeyDown If e.KeyCode = Keys.Enter Then SendKeys.Send("{tab}") End If End Sub