specific printer

G

Guest

I have many different reports, and 2 different type printers (Dot Matrix &
Laserjet)I set the each page property to use a specfic printer, everything
was fine. I've just installed the Access 2007, and Form A + B + C....used to
print out reports from Dot Matrix but now print out from the laserjet, so I
reset the property select the Dot Matrix printer, and print the report. Now
the next day I open database, print the report it all go back to the Laserjet
printer, only the from B stay with Dot matrix printer, why? any idea..please
help
 
U

UpRider

Carol, if you're using VBA,
here's how I control which printer a report uses....
Below is on 2 lines, 2nd line starts as Application.Reports

DoCmd.OpenReport strDocName, acViewPreview
Application.Reports(strDocName).Printer =
Application.Printers("YourPrinterName")

UpRider
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top