Default view to Page Width view

T

tinks

How can I save the default for a new document to be in Page Width view? I
tried modifying the view in the Normal.dotm and saving it but that did not
work.
Our company has some staff on 2007 and some on 2000 so we are defaulting to
save as 2003 docs.
 
J

Jean-Guy Marcil

tinks said:
How can I save the default for a new document to be in Page Width view? I
tried modifying the view in the Normal.dotm and saving it but that did not
work.
Our company has some staff on 2007 and some on 2000 so we are defaulting to
save as 2003 docs.

This is a "per document" setting.
What you did will work with newly created documents from Normal.dotm, but
will not affect documents that have been saved with a different zoom setting.
 
S

Stefan Blom

But of course you can force a view setting by using a couple of auto macros
in normal.dotm (normal.dot for older Word versions):

Sub AutoOpen()
ActiveWindow.ActivePane.View.Type = 3
ActiveWindow.ActivePane.View.Zoom.PageFit = 2
End Sub

Sub AutoNew()
ActiveWindow.ActivePane.View.Type = 3
ActiveWindow.ActivePane.View.Zoom.PageFit = 2
End Sub

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

tinks

You mean this macro is already available or that I would need to add it to my
normal.dotm?
 
G

Graham Mayor

You would need to add them

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
K

kfewer

Thanks, Graham. I modified the code for someone who wanted their default view
set to 115%. It works great for opening an existing document and when I click
 

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