Move To The Next TextBox When Enter Pressed

'Add 2 TextBoxes to your form.
'Insert the following code to your form:

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

Go Back