Tab Order for Dropdown Fields

J

JD McLeod

Below is code that I have in a form in Word which sets the tab order when the
user preses Tab. How should this look when the tab key should move from a
text field to a dropdown and/or checkbox field and then back to a text field.
The below works great for moving between text fields, but when I get to a
dropdown, it doesn't work. Thanks.

Sub ExitText991()
ActiveDocument.Bookmarks("Text22").Range.Fields(1).Result.Select
End Sub
 
J

JD McLeod

Ok, this seems to work, but is it correct?

Sub ExitText27()
ActiveDocument.FormFields("Dropdown34").Select
End Sub

Thanks.
 
Top