L
Laura
Hi,
I have written VBA code to pull paper from the appropriate trays for
letterhead and draft situations. We have Word 2003 and are using HP 4100
printers.
My problem is that when printing to the draft tray, if the tray has run out
of paper, the printer automatically pulls from the next tray -- our expensive
letterhead.
I'm talking to HP to see if this can be controlled from the printer end -
but does anyone know if there is a way through VBA to tell it "Pull from this
tray and this tray ONLY" ?
Any suggestions are greatly appreciated.
This is the code I am currently using to print to draft:
Sub SetForDraft()
With ActiveDocument.PageSetup
.FirstPageTray = 257
.OtherPagesTray = 257
End With
End Sub
I have written VBA code to pull paper from the appropriate trays for
letterhead and draft situations. We have Word 2003 and are using HP 4100
printers.
My problem is that when printing to the draft tray, if the tray has run out
of paper, the printer automatically pulls from the next tray -- our expensive
letterhead.
I'm talking to HP to see if this can be controlled from the printer end -
but does anyone know if there is a way through VBA to tell it "Pull from this
tray and this tray ONLY" ?
Any suggestions are greatly appreciated.
This is the code I am currently using to print to draft:
Sub SetForDraft()
With ActiveDocument.PageSetup
.FirstPageTray = 257
.OtherPagesTray = 257
End With
End Sub