J
Janie
I used Jonathan West's cool stuff mentioned in previous post. My wrinkle is
I need to go to a printer that is not my default. However, when I implement
West's code, my stuff goes to the right printer, but still doesn't come out
duplex. What did I miss? I copied all the code from West's article
"Controlling the Printer from Word VBA" part 2 and pasted it into my module.
The only change was to the PrintDuplexBooklet sub:
Sub PrintDuplexBooklet()
ActivePrinter = "\\conetworkname\hp9760"
Dim iDuplex As Long
iDuplex = GetDuplex 'save the current setting
SetDuplex 3 'set for vertical binding
ActiveDocument.PrintOut Background:=False
SetDuplex iDuplex 'restore the original setting
End Sub
Well, it is going to right printer A-OK -- just not duplex. What did I
skip???
Many thanks (luv yr stuff, Jonathan!)
Janie
I need to go to a printer that is not my default. However, when I implement
West's code, my stuff goes to the right printer, but still doesn't come out
duplex. What did I miss? I copied all the code from West's article
"Controlling the Printer from Word VBA" part 2 and pasted it into my module.
The only change was to the PrintDuplexBooklet sub:
Sub PrintDuplexBooklet()
ActivePrinter = "\\conetworkname\hp9760"
Dim iDuplex As Long
iDuplex = GetDuplex 'save the current setting
SetDuplex 3 'set for vertical binding
ActiveDocument.PrintOut Background:=False
SetDuplex iDuplex 'restore the original setting
End Sub
Well, it is going to right printer A-OK -- just not duplex. What did I
skip???
Many thanks (luv yr stuff, Jonathan!)
Janie