View Full Version : How to turn the Report Zoom to 100%?


accesser2003
07-15-2007, 11:08 PM
How can I make the default zoom of the Report to 100%. Is there any way?

Thanks,

Oldsoftboss
07-15-2007, 11:31 PM
Called from a cmdButton on a form....

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

or
DoCmd.OpenReport "YourReportName", acViewPreview
DoCmd.RunCommand acCmdFitToWindow

I prefer to use the latter

accesser2003
07-16-2007, 03:56 AM
Highly Appreciaitve