wackywoo105
Registered User.
- Local time
- Yesterday, 18:47
- Joined
- Mar 14, 2014
- Messages
- 203
I have a Brother MFC-J6920DW Printer. It has 2 main paper trays. I am trying to select each one for various reports. No matter what I do it always just takes paper from tray/bin 1.
Can anyone help me with what I am doing wrong? I have used most of the paperbin values from this list but it still always pulls from tray 1.
https://msdn.microsoft.com/en-us/li...nting.compatibility.vb6.printer.paperbin.aspx
I read a query from someone using a HP printer who had to use figures such as 257 etc. If the 1-14 range doesn’t work with my brother printer how do I find out which numbers will?
I am considering duplicating the printer in control panel, having different settings assigned to each duplicate and calling the one I need. I would however rather not do this if at all possible.
Code:
Set Application.Printer = Application.Printers("Brother MFC-J6920DW Printer")
MsgBox Application.Printer.DeviceName
Application.Printer.PaperBin = 15
MsgBox Application.Printer.PaperBin
DoCmd.OpenReport "MyReport", printorpreview, , _
"[RepNo] = " & Me![RepNo]
Can anyone help me with what I am doing wrong? I have used most of the paperbin values from this list but it still always pulls from tray 1.
https://msdn.microsoft.com/en-us/li...nting.compatibility.vb6.printer.paperbin.aspx
I read a query from someone using a HP printer who had to use figures such as 257 etc. If the 1-14 range doesn’t work with my brother printer how do I find out which numbers will?
I am considering duplicating the printer in control panel, having different settings assigned to each duplicate and calling the one I need. I would however rather not do this if at all possible.