S
Sandi V
I'm working on a document-based form and following the instructions at
http://word.mvps.org/FAQs/TblsFldsFms/SetTabOrder.htm for setting the tab
order in a template.
(Basically, create a macro that jumps to a field, and then assign an On Exit
macro to each field to specify which field next gets the foclus.)
This works great in my template, but new documents created from the template
default back to Word's left to right behavior.
Does anybody have any idea what's going on? (The ONLY VBA used in this
template are the Edit, GoTo Bookmark macros), like so:
'3 - ALTERNATED DEBTOR NAME
Sub GoAltDebtorName()
ActiveDocument.Bookmarks("txtAltDebtorName").Range.Fields(1).Result.Select
End Sub
Sub GoPropertyValue()
ActiveDocument.Bookmarks("txtPropertyValue").Range.Fields(1).Result.Select
End Sub
Any help is appreciated! Thanks. I'm using Word 2003.
Sandi
http://word.mvps.org/FAQs/TblsFldsFms/SetTabOrder.htm for setting the tab
order in a template.
(Basically, create a macro that jumps to a field, and then assign an On Exit
macro to each field to specify which field next gets the foclus.)
This works great in my template, but new documents created from the template
default back to Word's left to right behavior.
Does anybody have any idea what's going on? (The ONLY VBA used in this
template are the Edit, GoTo Bookmark macros), like so:
'3 - ALTERNATED DEBTOR NAME
Sub GoAltDebtorName()
ActiveDocument.Bookmarks("txtAltDebtorName").Range.Fields(1).Result.Select
End Sub
Sub GoPropertyValue()
ActiveDocument.Bookmarks("txtPropertyValue").Range.Fields(1).Result.Select
End Sub
Any help is appreciated! Thanks. I'm using Word 2003.
Sandi