The order of Textfields

N

Neil

I hope I'm in the correct Forum here. If not apologies!

I'm trying to make a formular in Word using Positioning-
Frames and Textfields using VBA & Word 2000. How can I
control the order of the frames/Textfields when I use the
TAB key to toggle through them! At the moment the order is
that which I developed them and not the order I want use!
Thanks from Switzerland.
Neil
 
G

Graham Mayor

You would need a series of macros called on exit from the fields to take you
where you wish to go.
eg

Sub GotoText3()
ActiveDocument.Bookmarks("Text3").Range.Fields(1).Result.Select
End Sub

will take you to the third Textfield. Change the bookmark information from
the target field properties as required.

See http://www.gmayor.dsl.pipex.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail (e-mail address removed)
Web site www.gmayor.dsl.pipex.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
N

Neil

Thanks, I had thought about that but thought there might
be another way around it. Never mind. Thanks for helping.
Cheers Neil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top