S Skip Jul 16, 2004 #1 When viewing a report can the zoom be preset to something other than "fit"?? No one can read "fit"
F fredg Jul 16, 2004 #2 When viewing a report can the zoom be preset to something other than "fit"?? No one can read "fit" Click to expand... 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
When viewing a report can the zoom be preset to something other than "fit"?? No one can read "fit" Click to expand... 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