How to increase size of open preview box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to view the full document when I click "open" and click
"preview". Is there any way to resize the box so you see more of the
document? Thanks.
 
Assuming you are talking about reports, and you want to zoom to a certain
size, if that the case, try

Docmd.OpenReport "ReportName"
DoCmd.RunCommand acCmdZoom75

or change the 75 to fit your need
 
I would like to view the full document when I click "open" and click
"preview". Is there any way to resize the box so you see more of the
document? Thanks.

If you open the report from an event using VBA:

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdFitToWindow

Also available are acCmdZoom10, Zoom25, ... etc .... Zoom1000
 
No, I want to be able to preview a full document in Microsoft word. When I
click open on the tool bar and then preview I am only able to view a part of
the document. I'd like to increase the size of the box so I can see the more
of the document. Thanks.
 
No, I want to be able to preview a full document in Microsoft word. When I
click open on the tool bar and then preview I am only able to view a part of
the document. I'd like to increase the size of the box so I can see the more
of the document. Thanks.

Word?
You have posted this message to the wrong newsgroup.
The access in this groups name refers to Microsoft Access, a database
program.
Please repost to the correct newsgroup for the WORD program you are
using. I would suggest you include your Windows and Office version
number in the message.
 

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