print to two printer simultaneously in Word

B

bob

How can I setup two network printer(s) in windows so that
they can print same document simultaneously as well as
continue to operate independently most of the time?
 
D

Doug Robbins

You would have to use a macro to do the printing, first to one printer and
then to the other.

See the article "Changing the selected (current) printer in Word without
changing

the system default printer" at:

http://word.mvps.org/FAQs/MacrosVBA/ChangeCurPrinter.htm


--
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.

Hope this helps,
Doug Robbins - Word MVP
 
G

Graham Mayor

Doug has pointed out one method - another, by a simpler route would be:

Sub PrintTwice()
Dim sCurrentPrinter As String
sCurrentPrinter = ActivePrinter 'This is the default printer
Application.PrintOut FileName:=""
ActivePrinter = "printername" 'This is the second printer
Application.PrintOut FileName:=""
ActivePrinter = sCurrentPrinter 'Resets to the original printer
End Sub

This code simply prints the complete document to the default and a defined
printer and returns focus to the default printer. See also -
http://www.gmayor.com/fax_from_word.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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