Page setup

A

Ashley

I would like to set the page setup of a report always in
the landscape page and in maximum view.
Is this possible?
 
F

fredg

I would like to set the page setup of a report always in
the landscape page and in maximum view.
Is this possible?

Open the Report in Design View.
Code the Report's Open Event:
DoCmd.Maximize

Click on File + Page Setup + Page.
Set the Orientation to Landscape.
Exit and Save the report changes.

The Report will open in landscape, maximized.
 
Top