COMBINACAO DE TECLAS
pessoal, combinacao de teclas como Shift+F5 por ex eu sei fazer, mas e usando o CTRL? por ex CTRL+L, como faz???
obrigado a todos!!!
obrigado a todos!!!
Vc acrescenta o e.Control = True:
Private Sub txtOS_PreviewKeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PreviewKeyDownEventArgs) Handles txtOS.PreviewKeyDown
If e.KeyCode = Keys.V And e.Control = True Then
txtOS.Text = My.Computer.Clipboard.GetText.ToString
End If
End Sub
Private Sub txtOS_PreviewKeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PreviewKeyDownEventArgs) Handles txtOS.PreviewKeyDown
If e.KeyCode = Keys.V And e.Control = True Then
txtOS.Text = My.Computer.Clipboard.GetText.ToString
End If
End Sub
blz, deu certinho!!!
Tópico encerrado , respostas não são mais permitidas