scasystems
Programmer
When a user presses ENTER in a text box, I want it to respond as though the user pressed TAB. How is this possible?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case 13
TabStrip1.SetFocus
End Select
End Sub