Thread: [Solved] vbTab in macros
View Single Post
 
Old 05-26-2011, 09:40 PM
macropod's Avatar
macropod macropod is online now Windows 7 32bit Office 2007
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,343
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

You're certainly going about this the hard way!

Assuming the formfield you want to go to has an internal bookmark name (eg "Text27"), then add a macro like the following to your document and make it the 'on exit' macro for the formfield you want to get there from.
Code:
Sub MyNextField()
ActiveDocument.FormFields("Text27").Select
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote