I am trying to control where the cursor lands when the user presses the tab key based on what was entered in the field they are currently on. I looked through other posts to see if an answer had already been posted. What I came up with was to Set the Focus on the field I want to go to. The only problem with that is, SetFocus is not given as an option in the auto-fill drop down (I guess that is what you call it) for that field. This is what I tried to use:
So I am at a loss as what to do now. Any suggestions?
Private Sub answerID_LostFocus()
(When I type Me.rText. the auto-fill drop down only suggests “value”) If I run the form anyway, it stops at this line with a Compile error: Method or data member not found.If Me.answerID = "Other" Then
End SubMe.rText.SetFocus
End If
So I am at a loss as what to do now. Any suggestions?