How do I change the default for print preview from fit to 100%?

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

Guest

When I go into print preview I always have to change the view from fit to
100%. I would like it if it would always show it at 100% rather than fit.
 
When I go into print preview I always have to change the view from fit to
100%. I would like it if it would always show it at 100% rather than fit.

Open the report from an event on a form using code:

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