How to always open in Normal View?

D

Douglas Adams

When I open a new document, I always open in Normal view.

I have several other Word documents that sometimes open in Normal view but
most often opens in Print Layout view.

How can I make Normal view the default setting for all my documents?

Thanks.
 
G

Graham Mayor

An autoopen and an autonew macro in normal.dot each containing the following
lines will ensure that your documents open in normal view regardless of the
saved view. Set the Zoom figure to your preference - here 100%

With ActiveWindow.View
.Type = wdNormalView
.Zoom.Percentage = 100
End With


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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Top