printview change from Fit to 75%

L

loufrat

Is there a way to change the default of Fit when doing a print view in Access
to 75%?
Any suggestion is appreciated
thanks
Lou
 
L

LouFrat

It’s a query that runs and prints a report, and the preview automatically
comes up.
I would like to show at 75% than it would be readable, I think in older
version of access you were able to change this.
 
V

Van T. Dinh

Query cannot open a Report.

You must have code or Macro somewhere in the process that execute an
OpenReport macro action (Macros) or method (VBA). If you can find the VBA
OpenReport statement, you can simply add 2 lines of code:

DoEvents
DoCmd.RunCommand acCmdZoom75

after the OpenReport statement.

You can change the Zoom factor when you preview the Report but it won't
stick, AFAIK. Next time you open the Report, Access will revert back to
whatever Access thinks suitable.
 
Top