JohnZ1156
Board Regular
- Joined
- Apr 10, 2021
- Messages
- 180
- Office Version
- 2021
- Platform
- Windows
I have an HP InkJet Color Printer and a Brother MFC-L2750DW Laser Printer.
I can "select" the Brother printer via VBA, but I also need to change it to manual feed.
I can't figure out or find how to select manual Feed using Excel VBA.
Here's what I have so far.
Please don't laugh.
I can "select" the Brother printer via VBA, but I also need to change it to manual feed.
I can't figure out or find how to select manual Feed using Excel VBA.
Here's what I have so far.
Please don't laugh.
VBA Code:
Sub PrintCheck()
'
Dim myprinter As String
Dim printer_name As String
printer_name = "Brother MFC-L2750DW series"
Application.ActivePrinter = "Brother MFC-L2750DW series on NE06:"
'MsgBox (Application.ActivePrinter)
Application.Goto Reference:="Check"
ActiveSheet.PageSetup.PrintArea = "$D$9:$L$19"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
' printer_name = Application.ActivePrinter
Worksheets("PNC_Checking").Select
Application.ActivePrinter = "HP Officejet Pro 8600 (Network) on NE02:"
'MsgBox (Application.ActivePrinter)
End Sub