How to capture a Control + Something First enable key preview on your form then use the key down event Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEv entArgs) Handles Me.KeyDown If e.Modifiers = Keys.Control Then If e.KeyCode = Keys.Enter Then MessageBox.Show(“Ctrl + Enter”) End If End If End Sub How to click [...]
Filed under: Applied IT | Leave a Comment »