Change default view when opeing Word attachment

G

Guest

I am using Office 2003. When I open Word documents from an e-mail they are
opening using the Reading layout. Is it possible to change the default view,
when opening Word document attachment, to the print layout?

Thanks in advnace
 
G

Graham Mayor

Tools > options > general > uncheck allow starting in reading layout.
(and/or)
force the view with a couple of macros. The following will attend to most
of the usual startup anaomalies.

Sub AutoNew()
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.DisplayPageBoundaries = True
End With
End Sub
Sub AutoExec()
CommandBars("Reviewing").Visible = False
End Sub


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


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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