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

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

Guest

Does anyone know how I can set 125% as a default in the Zoom Drop Down box in
Word?
 
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

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

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