open report default view; is this a setting?

P

phleduc

All reports in my application seem to open by default in "fit" view, is hter
any way to change that to for example 100% view
1) by changing a setting, 2) by using code?

Thxs-Philip
 
K

Ken Sheridan

Philip:

The RunCommand method has a number of options to set the zoom level. To
open at 100% for instance:

DoCmd.OpenReport "YourReport", View:=acViewpreview
RunCommand acCmdZoom100

Ken Sheridan
Stafford, England
 
G

GeoffG

Philip:

You probably have the report's Autosize property set to Auto. To fix this,
follow these steps:

1. Open the report in design view.
2. Open the report's property sheet (View, Properties).
3. Click the Format tab.
4. Change the AutoSize property to "No".

Regards
Geoff
 
Top