Opening documents at "page width" view size

M

Mark Scott

I am not sure if this is the right group for this but when I start a new
word document it is started at the page width zoom setting but if I open up
an attachment or previously saved document it is at 100% zoom. How can I
get the document to display at the "page width" zoom by default?
 
G

Graham Mayor

Word will open documents in their last saved view. If you want to override
this you'll need a pair of macros (or add the relevant code to existing
macros of the same name):

Sub AutoNew()
With ActiveWindow.View
.Type = wdPrintView
'.Type = wdNormalView
.Zoom.PageFit = wdPageFitBestFit
End With
End Sub

Sub AutoOpen()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.PageFit = wdPageFitBestFit
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

Top