printlayout as default for all documents ?

J

Jennik

Dear ..,

How do I set the printlayout as default for all documents without doiing so
per each document. Is there a general possibility ? I use Microsoft Office
Word 2003 SP2
thanks
 
G

Greg Maxey

Follow on to Suzanne's post, For documents saved in Normal view you
can force to open in PrintLayout with an AutoOpen() macro in the
template:

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdPrintView
.Zoom.PageFit = wdPageFitBestFit
End With
End Sub
 
Top