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
 
Back
Top