How do I make Zoom To "125" permanently ?

P

Peter

When I open Word, it is zoomed to 100 and I have to change it to 125 every
time.

Is there way to make the zoom to "125" so that I need not change it every
time ?

Thanks
Peter
 
G

Graham Mayor

Change the zoom setting -
http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm
or
You can control the zoom with auto macros in normal.dot. The following will
set it to 125% zoom regardless of what the document thinks it should be.
Change the 125 to any preferred zoom level. I have included also some of the
other regular problem fixes, but you can remove the extra lines if required.
If you want normal rather than print layout view swap the apostrophe from
the beginning of the line where indicated to the other.

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

Sub AutoNew()
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
.DisplayPageBoundaries = True
End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View

'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 125
.DisplayPageBoundaries = True
End With
End Sub

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


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

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

Top