Hi,
I have a Macro that executes commands and prints right after.
Before I execute the macro, I need to go and change printer and printer settings.
Is there a way use record macro option in the File Print Menu; How would I specify in printer Setting Job Type: Normal Print
I have this:
I have a Macro that executes commands and prints right after.
Before I execute the macro, I need to go and change printer and printer settings.
Is there a way use record macro option in the File Print Menu; How would I specify in printer Setting Job Type: Normal Print
I have this:
Code:
<code style="margin: 0px; padding: 0px; font-style: inherit; font-weight: inherit; line-height: 12px;">Option Explicit
Sub SelectPrinter()
Dim sNewPrinter As String
sNewPrinter = ActivePrinter
ActivePrinter = "XXXXXWestOffice on XXX-XX-001.office.XXXXXmfg.com"
VBA Code
then
Application.PrintOut Filename:="" .Parent.Parent.PrintOut From:=1, To:=3, Copies:=1
Options.PrintDraft = False
Sub MacroPint3()
[</code>/CODE]
Last edited: