Tema: FAQ's de VB6
Ver Mensaje Individual
  #160 (permalink)  
Antiguo 30/04/2007, 07:28
pablin202
 
Fecha de Ingreso: abril-2007
Mensajes: 1
Antigüedad: 17 años, 6 meses
Puntos: 0
Re: como pasar de un texto a otro usando Enter

Cita:
Iniciado por GeoAvila Ver Mensaje
pregunta:
¿cómo pasar de un texto a otro usando Enter?
respuesta:
Insertar tres TextBox y escribir el siguiente código:
Código:
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{tab}"
KeyAscii = 0
End If
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{tab}"
KeyAscii = 0
End If
End Sub
Private Sub Text3_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{tab}"
KeyAscii = 0
End If
End Sub
otra forma:
Insertar tres TextBox, cambiar la propiedad KeyPreview del formulario a True y escribir el siguiente código:
Código:
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{tab}"
KeyAscii = 0
End If
End Sub
Con la Propiedad KeyPreview en TRue

Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode=13 then Text2.SetFocus
End Sub