Print Report Landscape

  • Thread starter Summing multiple fields on a form
  • Start date
S

Summing multiple fields on a form

On my form I put a Print Button. This button prints the current record only,
using an embedded macro. It works fine, except the record is printed in
portait. I need it to print landscape. What do I need to do to correct this?

Thanks
 
G

golfinray

Add this code to your print button OnClick event:
Dim vPrinter As Access.Printer
Set vPrinter = Application.Printer
vPrinter.Orientation = acPRORLandscape
 

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