Template trouble

G

Guest

Now that I have finish creating my template as a .dot file. I thought I was
ready to go. I used the "update field" and the "merge to new document"
features to make sure that the user prompts were working the way I needed
them to. Problem? When select file/new/"my new template", it doesn't ask me
all of the questions? It starts somewhere in the middle...
 
C

Cindy M.

Hi =?Utf-8?B?T0RvZyBUcnlpbmcgTmV3VHJpY2tz?=,
Now that I have finish creating my template as a .dot file. I thought I was
ready to go. I used the "update field" and the "merge to new document"
features to make sure that the user prompts were working the way I needed
them to. Problem? When select file/new/"my new template", it doesn't ask me
all of the questions? It starts somewhere in the middle...
I'm afraid you don't provide precise enough information. Which version of Word
are we discussing? Have you done something with Fillin and ASK fields, by any
chance?

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
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 :)
 
G

Guest

Sorry - a little frustration sat in. I am using Word 2003 and I have ask, ref
and fillin statements in my template. When I generate a new document using
the template it skips the first 6 or 7 prompts.

{ ASK NameProcess "Enter the name of the Process." }
{ REF NameProcess \d "" MERGEFORMAT \* MERGEFORMAT }
 
C

Cindy M.

Hi =?Utf-8?B?T0RvZyBUcnlpbmcgTmV3VHJpY2tz?=,
Sorry - a little frustration sat in. I am using Word 2003 and I have ask, ref
and fillin statements in my template. When I generate a new document using
the template it skips the first 6 or 7 prompts.
I can identify with frustration :)

ASK prompts aren't triggered automatically when a new document is created from a
template, only Fillin fields (and this behavior was new about 10 years ago). The
reason is that sometimes the template designer wants more control over what
displays under which circumstances; this gives us a choice.

You have two possibilities:

1. Use a macro to force the field updating, and use only ASK fields

2. Use only Fillin fields. Select each one you want to "duplicate" (I assume that's
the logic behind using ASK fields in some places), then Insert/Bookmark to create a
bookmark around it.
{ ASK NameProcess "Enter the name of the Process." }
{ REF NameProcess \d "" MERGEFORMAT \* MERGEFORMAT }

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
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 :)
 
G

Guest

Thank you - I have changed all of my fillin statements to ASK fields. I have
attempted macros in the past, but was not sucessful. Can you lead me in the
right direction?
 
D

Doug Robbins - Word MVP

Create a macro in the Template with the name AutoNew() and in it insert then
following command

ActiveDocument.Fields.Update

I would suggest however that you use a UserForm for this.
See the article "How to create a Userform" at:

http://word.mvps.org/FAQs/Userforms/CreateAUserForm.htm


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 
G

Guest

Thank you. I will check it out.

Doug Robbins - Word MVP said:
Create a macro in the Template with the name AutoNew() and in it insert then
following command

ActiveDocument.Fields.Update

I would suggest however that you use a UserForm for this.
See the article "How to create a Userform" at:

http://word.mvps.org/FAQs/Userforms/CreateAUserForm.htm


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 

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