Make the enter key a tab key

 

Have you ever hit the enter key after filling in a text box thinking it would
move you to the next text box and it didn't. The reason is that you have to
code your program to do that. Below is the code that will turn the enter key in to a tab key.

Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{TAB}"
KeyAscii = 0
End If
End Sub