COMBINACAO DE TECLAS

FGONCALVES 25/01/2010 19:41:34
#332811
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!!!
RICART 25/01/2010 23:32:56
#332825
Resposta escolhida
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
FGONCALVES 26/01/2010 08:43:44
#332831


blz, deu certinho!!!
Tópico encerrado , respostas não são mais permitidas