Multiple copies in different printer trays

  • Thread starter Thread starter TKF
  • Start date Start date
T

TKF

I need help........ I have a word template and want to print 3 copies,
where the first copy goes to tray 1 and the remaining copies to tray 2
of a printer. Can someone help me.
 
Different printer drivers handle trays differently so a universal method may
be difficult - however if the active printer has Tray 1 and Tray 2 named as
such, then the following macro should work:

Sub PrintThreeCopies()
Dim sTray As String
sTray = Options.DefaultTray
Options.DefaultTray = "Tray 1"
Application.PrintOut FileName:="", Copies:=1
Options.DefaultTray = "Tray 2"
Application.PrintOut FileName:="", Copies:=2
Options.DefaultTray = sTray
End Sub

If you want to force the use of a specific printer (or printers) see
http://www.gmayor.com/fax_from_word.htm

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Answered elsewhere. (and haven't you got a challenge now, since you posted
this message into 25 different forums ..)
 
You are welcome :)

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

Back
Top