preview at 100%?

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
 
F

fredg

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.
 
B

Bill

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.
 

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

Top