open report default view; is this a setting?

  • Thread starter Thread starter phleduc
  • Start date Start date
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
 
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
 
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
 

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