preview at 100%?

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

Open report with preview at 100%?

DoCmd.Maximize sets the window size
alright, but the user always has to resize
the report to 100%. Report opens via:

DoCmd.OpenReport "TopicHistory", acViewPreview, , , acWindowNormal

What's needed?

Thanks,
Bill
 
Open report with preview at 100%?

DoCmd.Maximize sets the window size
alright, but the user always has to resize
the report to 100%. Report opens via:

DoCmd.OpenReport "TopicHistory", acViewPreview, , , acWindowNormal

What's needed?

Thanks,
Bill

DoCmd.OpenReport "TopicHistory", acViewPreview
DoCmd.RunCommand acCmdZoom100

Note: There is no need to write acWindowNormal.
That is the default.
 
Got it, thanks.
Bill




fredg said:
DoCmd.OpenReport "TopicHistory", acViewPreview
DoCmd.RunCommand acCmdZoom100

Note: There is no need to write acWindowNormal.
That is the default.
 
Back
Top