Set default printer per document

J

JiVi

Can anyone tell me how a printer can be assigned to a word document per
default? So that different docs have different printers assigned as default.
Thanks
 
F

Fredrik E. Nilsen

Can anyone tell me how a printer can be assigned to a word document per
default? So that different docs have different printers assigned as default.
Thanks

The short answer: You can't.

The not so short answer: You can create a macro and run this macro to
print from the printer you select:

Sub YourPrinter()
ActivePrinter = "Insert printer name here"
Application.PrintOut
End Sub

Read here for instructions on installing macros:

http://www.gmayor.com/installing_macro.htm
 

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