report zoom other than fit"

  • Thread starter Thread starter Skip
  • Start date Start date
S

Skip

When viewing a report can the zoom be preset to something
other than "fit"?? No one can read "fit"
 
When viewing a report can the zoom be preset to something
other than "fit"?? No one can read "fit"

If you open the report from an event on a form (i.e. Command Button
click event), code the event:

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

The Zooms available are acCmdZoom10, 25, 50, 75, 100, 200, 500, 1000
as well as acCmdFitToWindow
 
Back
Top