Reports open at 25% zoom?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I get my reports to open at 100% zoom? All my users are complaining because they have to enlarge the reports all the time from 25% to 100% to see the report results.
 
Gregory said:
How do I get my reports to open at 100% zoom? All my users are complaining because they have to enlarge the reports all the time from 25% to 100% to see the report results.


The standard way to do this is to use this sequence:

DoCmd.OpenReport . . .
DoCmd.RunCommand acCmdZoom100

If you are not using a form to open the report, then I
**think** you can use the zoom feature in the report's
Activate. It seems to work even though it generates an
error message that you can supress this way:

On Error Resume Next
DoCmd.RunCommand acCmdZoom100
 

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

Setting Zoom Level 2
access report 0
Default Zoom Level for Reports 2
Preview report at minimum zoom?? 3
Zoom during design mode of a report form... 1
Open report at 75% Zoom 3
Changing zoom size default 5
zoom 1

Back
Top