Fit

  • Thread starter Thread starter Dale Brown
  • Start date Start date
D

Dale Brown

I have created a database with a series of reports. These reports are called
up in a preview state from forms. They always come up in the fit mode
instead of 100%. Is there anyway for them to come up in the 100% view by
default?
 
Usually .... all reports will come up in the state that the last report was
saved as. In other words, you probably saved (not closed!) a report set to
Fit. Open a report and change the Fit to 100% in Page Setup then File -Save.
See if that helps.
 
I have created a database with a series of reports. These reports are called
up in a preview state from forms. They always come up in the fit mode
instead of 100%. Is there anyway for them to come up in the 100% view by
default?

Open the report from a command button on the form, using:

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