Print Preview Zoom

  • Thread starter Thread starter Guest
  • Start date Start date
Turning the report's property AutoResize off appears to give 100% instead of
Fit Page.
 
If you use code to open the Report, you can add some VBA statements to do
so. For example:

' to maximise the Report window
DoCmd.Maximize

' to adjust the Preview to 75%
DoCmd.RunCommand acCmdZoom75
 
Back
Top