As Suzanne says, you cannot set this is a default in the drop down box, but
you can override the settings for existing documents and new documents to
display all at 125% using a pair of macros. http://www.gmayor.com/installing_macro.htm
Sub AutoNew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 125
End With
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 125
End With
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
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.