Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Full Page View

Status
Not open for further replies.

Dilly

Technical User
May 28, 2001
41
0
0
GB
Can anyone tell me if its possible to force a report to open to full page view insted of only being able to view part of the report.
 
In your code, put something like this:
Code:
DoCmd.OpenReport "rptYourReport", acViewPreview
DoCmd.Maximize
DoCmd.RunCommand
acCmdFitToWindow

Other possibilities would be to open a report at a predetermined zoom rate, substituting one of these RunCommand statements for the one above:
Code:
 DoCmd.RunCommand acCmdZoom10
 DoCmd.RunCommand acCmdZoom25
 DoCmd.RunCommand acCmdZoom50
 DoCmd.RunCommand acCmdZoom75
 DoCmd.RunCommand acCmdZoom100
 DoCmd.RunCommand acCmdZoom150
 DoCmd.RunCommand acCmdZoom200
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top