Puoi utilizzare l'evento KeyDown del form potendo così gestire tutti i tasti che vuoi. Cioè:
codice:
Private Sub Form1_KeyDown(ByVal sender As Object, _
ByVal e As System.Windows.Forms.KeyEventArgs) _
Handles Me.KeyDown
Select Case e.KeyCode
Case Keys.F : Button1_Click(Nothing, Nothing)
Case ...
End Select
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
...
End Sub
Ahh, importante è che posti la proprietà Form1.KeyPreview = True, altrimenti il form non intercetta i tasti.