How do program a report to open and have it zoom to 100% instead .

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

Guest

Hi,
I have a report in a access database and want to preview it every time,
before printing it.
I have created a button to open the report but it always opens in Fit to
window mode. This is as good as usless as I cant read it to see the results
and so alwways have to enlarge it with zoom to 100% on the toolbar. I have
tried to use the on open event on the report to open it in zoom 100% but cant
seem to get it right. It says toolbar is not availiable when I try to use
domenu or runcommad
any help most apreciated.

using access 2000

Steve
 
Try putting the code into your command button, e.g.:

DoCmd.OpenReport "MyReport", acViewPreview
RunCommand acCmdZoom100
 
Back
Top