When I open MS Word docs, the default view is Reading
Layout.
What can be done to set the default view for all Word
docs to "Print Layout"?
Graham Mayor - 01 Apr 2004 17:19 GMT
I use a pair of macros to setup the conditions I like to see when opening
documents regardless of how they were saved and who by.
Sub Autonew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
End Sub
See http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
> When I open MS Word docs, the default view is Reading
> Layout.
>
> What can be done to set the default view for all Word
> docs to "Print Layout"?
Tommy - 01 Apr 2004 19:00 GMT
Are you opening from Outlook? If so:
In Tools > Options > General, deselect "Allow starting in
Reading Layout"
>-----Original Message-----
>When I open MS Word docs, the default view is Reading
[quoted text clipped - 4 lines]
>
>.
Beth Melton - 01 Apr 2004 19:22 GMT
Hi Sean,
I presume you are opening the document from an email attachment? If so
then go to Tools/Options/General and turn off "Allow starting in
Reading Layout".

Signature
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.
~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP
Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
> When I open MS Word docs, the default view is Reading
> Layout.
>
> What can be done to set the default view for all Word
> docs to "Print Layout"?