Not sure what you mean by the "merged file". Is it the mailmerge main file
or a file created by the mailmerge?
Also, without seeing some code, it's hard to offer any suggestions. I am
surprised however that the problem only occurs with 2003 and not also with
2002.

Signature
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
>I have an application (vfp) with a lot of letters being produced in Word
>using mail merge. The application works great for all versions of Word
[quoted text clipped - 8 lines]
> Thanks,
> Kevin
Kevin Payne - 22 Jun 2005 00:17 GMT
Hi Doug,
Thanks for responding. It's pretty straight forward code. I create a
delimited text file that gets attached to the doc. This runs great in all
versions of word except 2003. In 2003 it is prompting a "save as" dialogue
box in the document image viewer? This is what I am being told, I am one of
two developers on this project, and the other developer did the testing on
site where they have a couple of versions of 2003. I have every version but
that one, so I haven't actually been able to reproduce the problem.
oWorddoc = Createobject("word.application") && Create word object
oWorddoc.documents.open(cfileName)
oWorddoc.Activedocument.MailMerge.OpenDataSource(m.lcSourceDoc)
oWorddoc.Activedocument.MailMerge.Destination = wdSendToPrinter
oWorddoc.Activedocument.MailMerge.Execute
oWorddoc.documents.close(0)
oWorddoc.application.quit
release oWorddoc
> Not sure what you mean by the "merged file". Is it the mailmerge main file
> or a file created by the mailmerge?
[quoted text clipped - 15 lines]
> > Thanks,
> > Kevin
Doug Robbins - 22 Jun 2005 19:55 GMT
Instead of
oWorddoc.documents.close(0)
try
oWorddoc.documents.close wdDoNotSaveChanges

Signature
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
> Hi Doug,
>
[quoted text clipped - 40 lines]
>> > Thanks,
>> > Kevin