Change default display to 75%

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

Guest

Is there a way to change the default display for previewing reports to 75% instead of 100%
ctda
 
ctdak said:
Is there a way to change the default display for previewing reports to 75% instead of 100%?


Use:

DoCmd.RunCommand acCmdZoom75

right after the DoCmd.OpenReport line of code.


These are the available zoom factors that work with the
above:

acCmdZoom10
acCmdZoom100
acCmdZoom1000
acCmdZoom150
acCmdZoom200
acCmdZoom25
acCmdZoom50
acCmdZoom500
acCmdZoom75
acCmdSizeToFit
 
Thanks much. That will do it for me.
ctdak

----- Marshall Barton wrote: -----
Is there a way to change the default display for previewing reports to 75% instead of 100%?


Use:

DoCmd.RunCommand acCmdZoom75

right after the DoCmd.OpenReport line of code.


These are the available zoom factors that work with the
above:

acCmdZoom10
acCmdZoom100
acCmdZoom1000
acCmdZoom150
acCmdZoom200
acCmdZoom25
acCmdZoom50
acCmdZoom500
acCmdZoom75
acCmdSizeToFit
 

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

Back
Top