HELP! Setting up a Macro to Print from different trays

M

maggie ross

I have sent up 2 macros from the main printer (Kyocera) one to print from
tray 2 and one to print from tray 3 but whenever I try and use it the trays
default to tray 3 all the time. What am I doing wrong.

Copy of my codings below.

--------------------
Sub printblue()
'
' printblue Macro
' Macro recorded 24/08/2005 by
'
Application.PrintOut FileName:="", Range:=wdPrintAllDocument, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, _
Collate:=True, Background:=False, PrintToFile:=False,
PrintZoomColumn:=0, _
PrintZoomRow:=0, PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0
End Sub
--------------------

Sub printletterhead()
'
' printletterhead Macro
' Macro recorded 24/08/2005 by
'
Application.PrintOut FileName:="", Range:=wdPrintAllDocument, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, _
Collate:=True, Background:=False, PrintToFile:=False,
PrintZoomColumn:=0, _
PrintZoomRow:=0, PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0
End Sub
 

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