How to set the default zoom for Word in Office XP.

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

Guest

Is there a setting somewhere that would allow me to set the default zoom when
I open a document? Every doc that I open I manually set the zoom to "Page
Width".

Thanks in advance.
 
To prevent document settings from overriding preferences add the following
lines to each of an autoopen and an autonew macro

With ActiveWindow.View
.Type = wdPrintView
.Zoom.PageFit = wdPageFitBestFit
End With

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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