Printing

S

Shannon

Hi,

How can I code my Print command on a form so that it also
allows users to chose specific printer from their printers
and also allow them to "page setup" their printer?

Thanks,
 
S

SA

docmd.echo false
docmd.selectobject acreport, "your report", true
docmd.runcommand acCmdPrint
doevents
docmd.Echo True

Not the prettiest but it will work. Otherwise see our "On the Fly Printing"
modules in the Developer tools section of our web.
 
S

Shannon

Will this command bring up the default printer on user's
machine and allow them to set up pages?
 
Top