Default zoom size

G

Greg Maxey

You can put the following line in an AutoOpen and AutoNew macro stored in
your document template:

ActiveWindow.View.Zoom.PageFit = wdPageFitTextFit
 
G

Greg Maxey

Bob,

As you posted in the new user group I thought my earlier anwer might be a
bit vague. See the following link for instructions how to insert macros
provided in these groups and a primer on what a AutoOpen and AutoNew macor
is:

http://www.gmayor.com/installing_macro.htm

You would only need:

Sub AutoOpen
ActiveWindow.View.Zoom.PageFit = wdPageFitTextFit
End Sub

And

Sub AutoNew
ActiveWindow.View.Zoom.PageFit = wdPageFitTextFit
End Sub
 

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