how do I print same to 2 printers simultaneously

A

ashta

is it possible to set up to print regularly, the same document to two
different printers simultaneously. e.g. letter on headed paper in one printer
and second copy on second printer
 
S

Suzanne S. Barnhill

No, you can assign different trays on the same printer to "First page" and
"Other pages" of any document or section of a document, but there's no
provision for sending pages to different printers.
 
G

Graham Mayor

You can, however, direct whichever pages wherever you want using vba - see
my page with the misleading url http://www.gmayor.com/fax_from_word.htm and
in conjunction with that page, you probably want something like:

Sub PrintOnTwoPrinters()
Dim sPrinter As String
Dim sTray As String
sTray = Options.DefaultTray
sPrinter = ActivePrinter
ActivePrinter = "The First Printer Name"
Options.DefaultTray = "Tray 3"
ActiveDocument.PrintOut Range:=wdPrintRangeOfPages, Pages:="1",
Copies:=1
ActivePrinter = "The Other Printer Name"
Options.DefaultTray = "Tray 2"
ActiveDocument.PrintOut Range:=wdPrintRangeOfPages, Pages:="2-99",
Copies:=1
ActivePrinter = sPrinter
Options.DefaultTray = sTray
End Sub

substituting your real printer names where indicated.

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