Private Sub Form1_KeyDown(ByVal sender As Object, _
ByVal e As KeyEventArgs) Handles Me.KeyDown
If e.KeyCode = Keys.X AndAlso _
e.Modifiers = (Keys.Shift Or Keys.Alt) Then
MessageBox.Show("Shift+Alt+X")
End If
End Sub
Private Sub Form1_KeyDown(ByVal sender As Object, _
ByVal e As KeyEventArgs) Handles Me.KeyDown
If e.KeyData = (Keys.X Or Keys.Shift Or Keys.Alt) Then
MessageBox.Show("Shift+Alt+X")
End If
End Sub
Private Sub TextBox1_KeyDown (ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
System.Windows.Forms.SendKeys.Send("%+")
nd Sub
What are you talking about?It couldn't sucess to.