You don't. You record yourself a macro that swaps the printers. And another one that swaps them back. Make one of them a red smiley toolbar button, and one a purple smiley toolbar button. That's what I do.
Well, if you *must*, you can put a macro in those documents that switches printers for you (use the one you recorded) and change the name of it to Document Open. Problem: if you've got macro virus notification set properly, you'll get the option to enable/disable macros. Might be easier to just hit the printer button...
I decided to put one command button on my toolbar to run the following macro. I used the recorder. It changes the printer to my Panasonic, prints the active document, and then returns the printer settings back to the default printer "Canon S630".
Sub PrintPanasonic()
'
' PrintPanasonic Macro
' Print To Panasonic
'
ActivePrinter = "Epson LQ-860+"
Application.PrintOut FileName:="", Range:=wdPrintAllDocument, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="", PageType:=wdPrintAllPages, _
Collate:=True, Background:=True, PrintToFile:=False, PrintZoomColumn:=0, _
PrintZoomRow:=0, PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0
ActivePrinter = "Canon S630"
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.