Default zoom setting for print preview of reports??

J

John Schmidt

Hi --
Is there a setting that will force the print preview zoom level for
Access reports to 100%? This seems to be automatic with Access 2000,
but when running Access 2002 the default seems to be "Fit". Yes, the
zoom control can change it, but that's a bit irritating.

Thanks for your help. John
 
F

fredg

Hi --
Is there a setting that will force the print preview zoom level for
Access reports to 100%? This seems to be automatic with Access 2000,
but when running Access 2002 the default seems to be "Fit". Yes, the
zoom control can change it, but that's a bit irritating.

Thanks for your help. John

If you open the report from an event on a form, use:

DoCmd.OpenForm "FormName", acViewPreview
DoCmd.RunCommand acCmdZoom100
 
J

John Schmidt

fredg said:
If you open the report from an event on a form, use:

DoCmd.OpenForm "FormName", acViewPreview
DoCmd.RunCommand acCmdZoom100
Thanks, Fred. Although this requires hard coding each report in my
program separately, it sure helps. Is there no way to have ALL print
previews come up this way, by default?
 

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