-
To set the printer to something other than the default, use:
Set Printer = Printers(n)
To find the printer you're interested in, for the above, use:
For Each x In Printers
'compare x.DeviceName to the printername returned by the print dialog box
Next
-
Printing Problems
Ok. That's right.
But how can i retrieve the printer name from print dialog???
Maybe using hdc???
Thanks.
-
In this instance it might be easier for you to roll your own (create a drop down list/combo populated with the "for" statement in my previous post).