Report Preview

  • Thread starter Thread starter Little Penny
  • Start date Start date
L

Little Penny

How do I open a report so that it previews at 100% instead of fit.
By opening using a command button in a form and by double clicking the report icon



Thanks
 
How do I open a report so that it previews at 100% instead of fit.
By opening using a command button in a form and by double clicking the report icon

Thanks

If you use a form's command button click event:

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdZoom100
 
Thanks that worked.......






If you use a form's command button click event:

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdZoom100
 

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