Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/06/2008, 07:05
nep
 
Fecha de Ingreso: mayo-2008
Mensajes: 18
Antigüedad: 16 años
Puntos: 0
Respuesta: Pasar de un textbox a otro al darle a Enter

Intenta con esto:

Private Sub TextBox1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
If e.KeyCode = Keys.Enter Then
Me.TextBox2.Focus()
End If
End Sub

Suponiendo que tengas dos textbox y que el primero se llame textbox1 y el segundo textbox2