report preview in big view

  • Thread starter Thread starter xg
  • Start date Start date
X

xg

access 2003

my report preview is very small and cannot read the content. user has to
click the center of the report to make it large enough to read.

what's the code to make report preview large by default but not maximize to
save the user a click?
 
access 2003

my report preview is very small and cannot read the content. user has to
click the center of the report to make it large enough to read.

what's the code to make report preview large by default but not maximize to
save the user a click?

Open the report from a code event:

DoCmd.OpenReport "ReportName",acViewPreview
DoCmd.runCommand acCmdZoom100

If you also want it maximized, add
DoCmd.Maximize
to the above code.
 
Back
Top