Hi =?Utf-8?B?Q3VyaW91c0NsaXBBcnQ=?=,
> I have a simple fill-in template and once the info has been filled in at the
> top of the document, I want to cursor to move down to the first hard return
> in the template.
In this case, I'd use ASK fields rather than Fillin fields. Put a macro named
AutoOpen in the document that
1. updates the fields
2. positions the cursor
Roughly:
Sub AutoOpen()
ActiveDocument.Fields.Update
ActiveDocument.Paragraphs(2).Select
Selection.Collapse
End Sub
Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
http://www.word.mvps.org
This reply is posted in the Newsgroup; please post any follow question or reply
in the newsgroup and not by e-mail :-)