Print preview format

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This is probably a simple solution but I could not figure it out. I have a
report that defaults to Fit mode when it shows up in preview mode on the
screen. How can I specify for the preview mode to be at 100% and the preview
window to be larger?
 
This is probably a simple solution but I could not figure it out. I have a
report that defaults to Fit mode when it shows up in preview mode on the
screen. How can I specify for the preview mode to be at 100% and the preview
window to be larger?

Open the report using code:
DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCMDZoom100
DoCmd.Maximize
 

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

Back
Top