Default Zoom

  • Thread starter Thread starter Z
  • Start date Start date
Z

Z

How can I set Access 2002 to always open reports in a particular zoom
percentage by default, such as 150%, without having to write VBA code or
constantly go to the Zoom menu to make it 150%?

Thanks for any help.

Z
 
If you open the reports from a command button on a form, you can code the
command button click event:

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

but then you don't want to write any code.
Sorry.
 
Z said:
How can I set Access 2002 to always open reports in a particular zoom
percentage by default, such as 150%, without having to write VBA code or
constantly go to the Zoom menu to make it 150%?

In the form that opens the report, add the line:

DoCmd.RunCommand acCmdZoom150

immediately after the DoCmd.OpenReport line.
 
Back
Top