Reply
 
Thread Tools Display Modes
  #1   Report Post  
Gilley
 
Posts: n/a
Default Missing Images when Mail Merging

I have a template which creates a mail merge to a new document automatically.
There are only two fields in the merge. Product Name and Image Name.
Everything works beautifully except that the images don't display. I see the
image frame with the sizing handles, but no image.

I have two macros. One that run in the DocumentNew that performs the merge.
A second macro runs after that to basically do Ctrl+A and F9. However, this
doesn't seem to do the trick.

There are approximately 72 images with a size of about 200 pixels wide each.
The resolution of the images is 100 dpi.

I am working in Word 2000 and have the following options:
View Placeholders -- OFF
Print Drawings -- ON
Include with Document Drawing Objects -- ON

I do lots of work with images and haven't had a problem with any other
document.

Any help is greatly welcome.

TIA,
Gilley
  #2   Report Post  
Peter Jamieson
 
Posts: n/a
Default

Assuming you are using a nested field such as

{ INCLUDEPICTURE "c:\\myimages\\{ MERGEFIELD "Image Name" }" }

have you checked to ensure thata there are no additional spaces in the
pathname, e.g.

{ INCLUDEPICTURE "c:\\myimages\\ { MERGEFIELD "Image Name" }" }

? For some reason it seems easy to introduce one by accident when
constructing this kind of field.

Peter Jamieson


"Gilley" wrote in message
...
I have a template which creates a mail merge to a new document
automatically.
There are only two fields in the merge. Product Name and Image Name.
Everything works beautifully except that the images don't display. I see
the
image frame with the sizing handles, but no image.

I have two macros. One that run in the DocumentNew that performs the
merge.
A second macro runs after that to basically do Ctrl+A and F9. However,
this
doesn't seem to do the trick.

There are approximately 72 images with a size of about 200 pixels wide
each.
The resolution of the images is 100 dpi.

I am working in Word 2000 and have the following options:
View Placeholders -- OFF
Print Drawings -- ON
Include with Document Drawing Objects -- ON

I do lots of work with images and haven't had a problem with any other
document.

Any help is greatly welcome.

TIA,
Gilley



  #3   Report Post  
Gilley
 
Posts: n/a
Default

Peter,

Thanks for the reply. I am what you might call particular about my file and
directory names. I never use spaces just for this reason. I prefer
TitleCase or Camel directory and file names.

Here is the includepicture merge field:

{ includepicture
"\\welton1\\sys\\maint\\web\\imagesspecsschematics logosremotes\\icons(smallimages)\\{mergefield icon_file_name}}

I am getting a box that is the right size for the images. The box also has
the sizing handles. It is just the images don't display.

Thanks again,
Gilley

"Peter Jamieson" wrote:

Assuming you are using a nested field such as

{ INCLUDEPICTURE "c:\\myimages\\{ MERGEFIELD "Image Name" }" }

have you checked to ensure thata there are no additional spaces in the
pathname, e.g.

{ INCLUDEPICTURE "c:\\myimages\\ { MERGEFIELD "Image Name" }" }

? For some reason it seems easy to introduce one by accident when
constructing this kind of field.

Peter Jamieson


"Gilley" wrote in message
...
I have a template which creates a mail merge to a new document
automatically.
There are only two fields in the merge. Product Name and Image Name.
Everything works beautifully except that the images don't display. I see
the
image frame with the sizing handles, but no image.

I have two macros. One that run in the DocumentNew that performs the
merge.
A second macro runs after that to basically do Ctrl+A and F9. However,
this
doesn't seem to do the trick.

There are approximately 72 images with a size of about 200 pixels wide
each.
The resolution of the images is 100 dpi.

I am working in Word 2000 and have the following options:
View Placeholders -- OFF
Print Drawings -- ON
Include with Document Drawing Objects -- ON

I do lots of work with images and haven't had a problem with any other
document.

Any help is greatly welcome.

TIA,
Gilley




  #4   Report Post  
Gilley
 
Posts: n/a
Default

PROBLEM SOLVED!!!!!!!!!!!!!!!!!!!

It seems my problem was in the way I was using the relative directory path
to my network. I was using ...

\\welton1\\sys\\maint\\web ...

When pathing to a network, you need four back slashes (\\\\). My path
should have read ...

\\\\welton1\\sys\maint\\web ...

Thanks for you help Peter. You started me looking in the right direction
for the issue.

I hope this post saves other from the same frustration I had.

Regards,
Gilley

"Gilley" wrote:

Peter,

Thanks for the reply. I am what you might call particular about my file and
directory names. I never use spaces just for this reason. I prefer
TitleCase or Camel directory and file names.

Here is the includepicture merge field:

{ includepicture
"\\welton1\\sys\\maint\\web\\imagesspecsschematics logosremotes\\icons(smallimages)\\{mergefield icon_file_name}}

I am getting a box that is the right size for the images. The box also has
the sizing handles. It is just the images don't display.

Thanks again,
Gilley

"Peter Jamieson" wrote:

Assuming you are using a nested field such as

{ INCLUDEPICTURE "c:\\myimages\\{ MERGEFIELD "Image Name" }" }

have you checked to ensure thata there are no additional spaces in the
pathname, e.g.

{ INCLUDEPICTURE "c:\\myimages\\ { MERGEFIELD "Image Name" }" }

? For some reason it seems easy to introduce one by accident when
constructing this kind of field.

Peter Jamieson


"Gilley" wrote in message
...
I have a template which creates a mail merge to a new document
automatically.
There are only two fields in the merge. Product Name and Image Name.
Everything works beautifully except that the images don't display. I see
the
image frame with the sizing handles, but no image.

I have two macros. One that run in the DocumentNew that performs the
merge.
A second macro runs after that to basically do Ctrl+A and F9. However,
this
doesn't seem to do the trick.

There are approximately 72 images with a size of about 200 pixels wide
each.
The resolution of the images is 100 dpi.

I am working in Word 2000 and have the following options:
View Placeholders -- OFF
Print Drawings -- ON
Include with Document Drawing Objects -- ON

I do lots of work with images and haven't had a problem with any other
document.

Any help is greatly welcome.

TIA,
Gilley




  #5   Report Post  
Peter Jamieson
 
Posts: n/a
Default

Glad you found it. Yes, I've missed that one too!

Peter Jamieson
"Gilley" wrote in message
...
PROBLEM SOLVED!!!!!!!!!!!!!!!!!!!

It seems my problem was in the way I was using the relative directory path
to my network. I was using ...

\\welton1\\sys\\maint\\web ...

When pathing to a network, you need four back slashes (\\\\). My path
should have read ...

\\\\welton1\\sys\maint\\web ...

Thanks for you help Peter. You started me looking in the right direction
for the issue.

I hope this post saves other from the same frustration I had.

Regards,
Gilley

"Gilley" wrote:

Peter,

Thanks for the reply. I am what you might call particular about my file
and
directory names. I never use spaces just for this reason. I prefer
TitleCase or Camel directory and file names.

Here is the includepicture merge field:

{ includepicture
"\\welton1\\sys\\maint\\web\\imagesspecsschematics logosremotes\\icons(smallimages)\\{mergefield
icon_file_name}}

I am getting a box that is the right size for the images. The box also
has
the sizing handles. It is just the images don't display.

Thanks again,
Gilley

"Peter Jamieson" wrote:

Assuming you are using a nested field such as

{ INCLUDEPICTURE "c:\\myimages\\{ MERGEFIELD "Image Name" }" }

have you checked to ensure thata there are no additional spaces in the
pathname, e.g.

{ INCLUDEPICTURE "c:\\myimages\\ { MERGEFIELD "Image Name" }" }

? For some reason it seems easy to introduce one by accident when
constructing this kind of field.

Peter Jamieson


"Gilley" wrote in message
...
I have a template which creates a mail merge to a new document
automatically.
There are only two fields in the merge. Product Name and Image Name.
Everything works beautifully except that the images don't display. I
see
the
image frame with the sizing handles, but no image.

I have two macros. One that run in the DocumentNew that performs the
merge.
A second macro runs after that to basically do Ctrl+A and F9.
However,
this
doesn't seem to do the trick.

There are approximately 72 images with a size of about 200 pixels
wide
each.
The resolution of the images is 100 dpi.

I am working in Word 2000 and have the following options:
View Placeholders -- OFF
Print Drawings -- ON
Include with Document Drawing Objects -- ON

I do lots of work with images and haven't had a problem with any
other
document.

Any help is greatly welcome.

TIA,
Gilley





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
Missing information when merging excel sheet in Catalogue document fredgo Mailmerge 1 March 24th 05 11:40 AM
Command line argument for mail merging Chellammal New Users 1 March 17th 05 12:23 PM
Mail merge freezes in the middle of merging Tulasi Mailmerge 1 February 14th 05 10:48 AM
Mail Merging into the current or target document Viperpurpleuk Mailmerge 1 December 20th 04 08:12 AM
word / outlook mail should allow including images from web source. ric Microsoft Word Help 2 November 26th 04 08:11 AM


All times are GMT +1. The time now is 03: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"