printview change from Fit to 75%

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

Guest

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

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