Visual Basic - DTPicker1 controlar el enter

Life is soft - evento anual de software empresarial
 
Vista:

DTPicker1 controlar el enter

Publicado por jose (128 intervenciones) el 04/11/2002 05:58:17
como se controla el enter en un dtpicker yo lo puse asi, pero no
hace nada.

Private Sub DTPicker1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
KeyAscii = 0
txtconcepto.SetFocus
End If
End Sub
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:DTPicker1 controlar el enter

Publicado por elliott (42 intervenciones) el 04/11/2002 16:30:55
lo que podrías hacer es anticiparte a la tecla poniendo en siguiente código

Private Sub DTPicker1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyReturn Then 'ojo el vbKeyReturn = 13
keycode=0
End If
End Sub
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar