On Open - Size

  • Thread starter Thread starter A Hopper
  • Start date Start date
A

A Hopper

In the On Open event of a report I placed the following
DoCmd.Maximize
When I preview the report opens maximized, however it is
still too small to read (it opens as "fit"). I have to
zoom to 100% to make it readable. Is there a way to make
the report open maximized and zoomed to a larger size
(100%)?

Thank you for your help

Allan
 
If you open the report from a command button event:
DoCmd.OpenReport, "ReportName",acViewPreview
DoCmd.RunCommand acCmdZoom100
 
Fred
Thank you very much.
Allan
-----Original Message-----
If you open the report from a command button event:
DoCmd.OpenReport, "ReportName",acViewPreview
DoCmd.RunCommand acCmdZoom100
--
Fred

Please reply only to this newsgroup.
I do not reply to personal e-mail.





.
 
Back
Top