Hello
My sample program has many buttons. I want my two button's pausebtn
and continuebtn
will perform click when a letter on the keyboard will be pressed, let say letter C or P.
Private Sub pausebtn_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles pausebtn.KeyPress
pausebtn.PerformClick()
End Sub
This are the statements i have. I think this are lacking.