Bookmarks & ASK Fields

K

Karen

I set up some ASK fields and bookmarks. Only problem - How do I activate the
fields to point the user to each field? I want the user to be able to open
the file and he/she will be prompted to enter information and the info will
be placed in the appropriate section of the form. I hope I am explaining
this right.
Thanks
 
D

Doug Robbins

Either use a userform

See the article "How to create a Userform" at:

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


or, use formfields in a protected document:

Please Fill Out This Form
Part 1: Create professional looking forms in Word
http://www.computorcompanion.com/LPMArticle.asp?ID=22

Part 2: Adding Automation to your Word forms.
http://www.computorcompanion.com/LPMArticle.asp?ID=46

Part 3: Learn more VBA (macros) to automate your forms.
http://www.computorcompanion.com/LPMArticle.asp?ID=119

Part 4: Use custom dialog boxes in your Word forms
http://www.computorcompanion.com/LPMArticle.asp?ID=127

Part 5: Connect your AutoForm to a database to save input time and keep
better records!
http://www.computorcompanion.com/LPMArticle.asp?ID=136


--
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
 
M

macropod

Hi Karen,

Given that you've already set the ASK fields up, probably the simplest
solution is to check the 'update fields' box under Tools|Options|Print. This
will cause Word to prompt the for the required information whenever the
document is printed.

A better solution, still using your ASK fields, is not to do the above but
instead to add an AutoOpen macro (for an existing document) or an AutoNew
macro for a Word template to trigger the prompts. For example:
Sub AutoOpen()
Activedocument.Fields.Update
End Sub
in an existing document will trigger the ASK fields every time the document
opens.

Another option would be to use a MACROBUTTON field to fire off a 'prompt'
macro. This would give the user more control over the timing. In this case,
the MACROBUTTON field might be coded as:
{MACROBUTTON Prompt Click here to start updating}
and to have a macro in the document coded as:
Sub Prompt()
Activedocument.Fields.Update
End Sub
In this case, double-clicking the MACROBUTTON field would fire the macro.

Doug Robbins has already pointed you to a number of other solutions.

Cheers
 

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