On the keypress events for the text boxes, put in the following code. It will replace the return key with a tab key entry:

If KeyAscii = vbKeyReturn Then
KeyAscii = vbKeyTab
End If