Default Zoom

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
 
F

Fredg

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.
 
M

Marshall Barton

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top