procedimiento

22/02/2005 - 20:20 por Adrian | Informe spam
Hola y gracias a todos k ayuda a la jente novata como yo!


Me gustaria saver como hacer este procedimiento en vb.net

If KeyAscii = vbKeyReturn Then
KeyAscii = 0
SendKeys "{Tab}"
End If

Gracias !
 

Leer las respuestas

#1 Pedro Luna Montalvo, MVP
23/02/2005 - 03:06 | Informe spam
If e.KeyChar = ControlChars.Cr Then
e.Handled = True
SendKeys.Send("{TAB}")
End If


Saludos
Pedro Luna, [MVP VB.NET]
Gye, Ecu


"Adrian" escribió en el mensaje
news:074701c51913$9fe364c0$
Hola y gracias a todos k ayuda a la jente novata como yo!


Me gustaria saver como hacer este procedimiento en vb.net

If KeyAscii = vbKeyReturn Then
KeyAscii = 0
SendKeys "{Tab}"
End If

Gracias !

Preguntas similares