How to open documents in a specific size each time

S

Stefan Blom

The zoom is saved with the document (see
http://word.mvps.org/faqs/general/SaveViewAndZoom.htm).

However, if you want to force a specific zoom on all documents, whether you
saved them or not, you can make use of auto macros:

Sub AutoOpen()
ActiveWindow.View.Type = 3 'Print Layout view
ActiveWindow.View.Zoom = 120
End Sub

Sub AutoNew()
ActiveWindow.View.Type = 3 'Print Layout view
ActiveWindow.View.Zoom = 120
End Sub

Place these macros in your normal.dot(m) template. For assistance, see
http://www.gmayor.com/installing_macro.htm.
 

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