Hi -- I am working on a VB program that prints out a form. Before the print, I want to change the "PaperBin" property of the printer. I only have one printer set up (it's a network printer set as the default), but I explicitly set it in my code anyway, and have a message box showing that it's really the correct printer. Yet, when I try to change the PaperBin property, I get error "383 -- property read only."
Any ideas?
Thanks!

Here's the snippet of my code:
Dim CheckPrinter As Printer
Set CheckPrinter = Printers(0)
MsgBox "CheckPrinter(0) = " & CheckPrinter.DeviceName
CheckPrinter.PaperBin = vbPRBNMiddle