Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.mailmerge.fields
PatRyan PatRyan is offline
external usenet poster
 
Posts: 4
Default Fill-In fields not working correctly on WordMerge doc

I have two fill-in fields on my word merge document that appear to be coded
correctly, but the pop-up to fill in the values are not appearing. When I
select 'Toggle Field Codes' the following is displayed for the field
selected: {FILLIN "Please enter Takeover Amount" \d "0.00"}. If I place my
cursor on that field, right click, and select 'Update Field' the prompt
pop-up will come up, allow me to enter a value, and then display the value
entered correctly in the letter.

Problem: How do I get the FillIn prompts to display automatically?
Thanks!!
--
Pat
  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Cindy M. Cindy M. is offline
external usenet poster
 
Posts: 2,416
Default Fill-In fields not working correctly on WordMerge doc

Hi Pat,

I have two fill-in fields on my word merge document that appear to be coded
correctly, but the pop-up to fill in the values are not appearing. When I
select 'Toggle Field Codes' the following is displayed for the field
selected: {FILLIN "Please enter Takeover Amount" \d "0.00"}. If I place my
cursor on that field, right click, and select 'Update Field' the prompt
pop-up will come up, allow me to enter a value, and then display the value
entered correctly in the letter.

Problem: How do I get the FillIn prompts to display automatically?

Can you please be more specific about what you mean by "automatically"? When do
you expect them to appear?

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 :-)

  #3   Report Post  
Posted to microsoft.public.word.mailmerge.fields
PatRyan PatRyan is offline
external usenet poster
 
Posts: 4
Default Fill-In fields not working correctly on WordMerge doc


--
Pat


"Cindy M." wrote:

Hi Pat,

I have two fill-in fields on my word merge document that appear to be coded
correctly, but the pop-up to fill in the values are not appearing. When I
select 'Toggle Field Codes' the following is displayed for the field
selected: {FILLIN "Please enter Takeover Amount" \d "0.00"}. If I place my
cursor on that field, right click, and select 'Update Field' the prompt
pop-up will come up, allow me to enter a value, and then display the value
entered correctly in the letter.

Problem: How do I get the FillIn prompts to display automatically?

Can you please be more specific about what you mean by "automatically"? When do
you expect them to appear?

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 :-)

Hi Cindy,

The User selects a button on the MSAccess form that calls the Word Merge
letter. When the letter is displayed the variable fields are pre-filled with
data from the database.

From what I'm told...the fill-in prompt requesting the takeover amount was
displayed when the letter opened. When the correct amount was entered, the
User selected OK, then the second fill-in prompt for the Date would be
displayed. The only way those prompts appear now is if they right click on
the field and select Update field.

Your help is greatly appreciated!!
Pat
  #4   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Cindy M. Cindy M. is offline
external usenet poster
 
Posts: 2,416
Default Fill-In fields not working correctly on WordMerge doc

Hi Pat,

I have two fill-in fields on my word merge document that appear to be coded
correctly, but the pop-up to fill in the values are not appearing. When I
select 'Toggle Field Codes' the following is displayed for the field
selected: {FILLIN "Please enter Takeover Amount" \d "0.00"}. If I place my
cursor on that field, right click, and select 'Update Field' the prompt
pop-up will come up, allow me to enter a value, and then display the value
entered correctly in the letter.

Problem: How do I get the FillIn prompts to display automatically?

Can you please be more specific about what you mean by "automatically"? When do
you expect them to appear?

The User selects a button on the MSAccess form that calls the Word Merge
letter. When the letter is displayed the variable fields are pre-filled with
data from the database.

From what I'm told...the fill-in prompt requesting the takeover amount was
displayed when the letter opened. When the correct amount was entered, the
User selected OK, then the second fill-in prompt for the Date would be
displayed. The only way those prompts appear now is if they right click on
the field and select Update field.

OK...

Check the code behind the button in the Access form: does it use Documents.Open or
Documents.Add to bring up the Word mail merge letter?

Since, oh, about Word 95 or Word 97 Fillin fields are displayed automatically when a
document is created from a template, but not when a document is simply opened. VBA
code can force a display ("imitate" the right-click).

I can only guess that either the template was replaced with a document, or the code
has been changed...

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 :-)

  #5   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Mary Tom Mary Tom is offline
external usenet poster
 
Posts: 1
Default Fill-In fields not working correctly on WordMerge doc

Pat-I saw where you were having trouble getting the prompts for the fillin
field to pop up-I am having the same problem-did you get it figured out?

"PatRyan" wrote:

I have two fill-in fields on my word merge document that appear to be coded
correctly, but the pop-up to fill in the values are not appearing. When I
select 'Toggle Field Codes' the following is displayed for the field
selected: {FILLIN "Please enter Takeover Amount" \d "0.00"}. If I place my
cursor on that field, right click, and select 'Update Field' the prompt
pop-up will come up, allow me to enter a value, and then display the value
entered correctly in the letter.

Problem: How do I get the FillIn prompts to display automatically?
Thanks!!
--
Pat



  #6   Report Post  
Posted to microsoft.public.word.mailmerge.fields
macropod macropod is offline
external usenet poster
 
Posts: 1,002
Default Fill-In fields not working correctly on WordMerge doc

Hi Mary,

FILLIN fields in a standard document only give a prompt if you do something
to cause them to activate, such as:
.. printing the document (eg with the 'update fields' option checked in
Tools|Options|Print);
.. selecting the field and pressing F9; or
.. using a macro to execute .Fields.Update.

In a mailmerge main document a FILLIN prompts each time a new data record is
merged, unless you use the '\o' switch.
If the FILLIN field is in a template, it prompts automaticallywhen a new
document is created based on that template.

Cheers


--
macropod
[MVP - Microsoft Word]


"Mary Tom" Mary wrote in message
news
Pat-I saw where you were having trouble getting the prompts for the fillin
field to pop up-I am having the same problem-did you get it figured out?

"PatRyan" wrote:

I have two fill-in fields on my word merge document that appear to be

coded
correctly, but the pop-up to fill in the values are not appearing.

When I
select 'Toggle Field Codes' the following is displayed for the field
selected: {FILLIN "Please enter Takeover Amount" \d "0.00"}. If I

place my
cursor on that field, right click, and select 'Update Field' the prompt
pop-up will come up, allow me to enter a value, and then display the

value
entered correctly in the letter.

Problem: How do I get the FillIn prompts to display automatically?
Thanks!!
--
Pat



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
prevent fill in fields from moving georgia_snwflake Microsoft Word Help 1 March 30th 05 09:51 AM
Fill in fields Randslove Microsoft Word Help 1 March 10th 05 08:44 PM
Macros and autotext not working correctly Carol Microsoft Word Help 1 February 17th 05 06:52 PM
Number fields not merging correctly Gov_ner Mailmerge 1 December 2nd 04 10:51 PM
posting data from text input fields to fields later in document BOB Microsoft Word Help 1 November 23rd 04 06:19 PM


All times are GMT +1. The time now is 01:54 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"