Hola, haber proba asi
Private Sub Form_KeyPress(KeyAscii As Integer)
On Error Resume Next
Dim iTI As Integer
Dim i As Integer
If (KeyAscii = vbKeyReturn) Or (KeyAscii = vbKeySeparator) Then
Err.Clear
If Screen.ActiveControl.TabIndex = Count - 1 Then
iTI = 0
Else
iTI = Screen.ActiveControl.TabIndex + 1
End If
For i = 0 To Count - 1
If Me.Controls(i).TabIndex = iTI Then
Me.Controls(i).SetFocus
If Err.Number Then
Err.Clear
iTI = iTI + 1
Else
Exit For
End If
End If
Next
KeyAscii = 0
End If
End Sub