Default zoom size

  • Thread starter Thread starter Bob S
  • Start date Start date
B

Bob S

I use Word 2003. How can you change the default zoom size to "Text width"?
Thanks.
 
You can put the following line in an AutoOpen and AutoNew macro stored in
your document template:

ActiveWindow.View.Zoom.PageFit = wdPageFitTextFit
 
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

Back
Top