add zoom settings permanently

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

Guest

Is there any way to permanently add % settings to the Zoom feature in Word? I
like to view Word at 85% or 90%. I know that I can type in the desired
percent, but it is tedious doing so each time I open Word.

Thanks for your help,
travis
 
You can force any zoom setting with autoexec macros which will over-ride the
settings saved with the document:

Sub AutoNew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 85
End With
End Sub

Sub AutoOpen()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 85
End With
End Sub


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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top