Change Zoom Default Report Setting

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

Guest

anWhen previewing a report in Microsoft Access 2000 or 2003, how can I change
the default zoom setting from Fit to something else like 150%?

Thanks,

Sarah
 
if you're opening the report with code running on a form (such as from a
command button), then add the following code immediately after the
OpenReport action, as

DoCmd.RunCommand acCmdZoom150

hth
 
Try seting the zoom after openning the report

Docmd.OpenReport "ReportName"
DoCmd.RunCommand acCmdZoom150
 
Back
Top