I need to add 125% to the Zoom Drop Down Box

  • Thread starter Thread starter Guest
  • Start date Start date
You can't. You can type it in, but you can't add it to the list.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
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

My web site www.gmayor.com

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