You can do one thing is that on keydown event of text box check for key pressed by
user. if th key is enter then set focus to control whic you want.
one example is over here.
Private Sub txtFirstName_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtFirstName.KeyDown
Select Case (e.KeyCode)
Case Keys.Enter
Me.txtMiddleName.Focus()
End Select
End Sub
|