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.
 

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