mail merge in Word 2002

A

Asa

The following code works just the way i want it to in a
document in Word 2000: it shows the dialogbox for Print...

With ActiveDocument.MailMerge
.Destination = wdSendToPrinter
.Execute Pause:=False
End With

When run in 2002 the dialogbox doesn't appear, it just
prints the document. Are there any changes in the way
execute works or what? Does somebody know?

/Asa
 
C

Cindy M -WordMVP-

Hi Asa,
The following code works just the way i want it to in a
document in Word 2000: it shows the dialogbox for Print...

With ActiveDocument.MailMerge
.Destination = wdSendToPrinter
.Execute Pause:=False
End With

When run in 2002 the dialogbox doesn't appear, it just
prints the document. Are there any changes in the way
execute works or what?
Yes, the default behavior was changed. I think too many
developers complained about having to merge to a new document
then print... I know of no way to change how it works, but
you could possibly do something with the
Dialogs(wdDialogFilePrint) to capture what the users chooses
and have the mail merge behave accordingly.

what kinds of thing(s) might the user want to change before
the print job spools?

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Sep
30 2003)
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
:)
 

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