Set default so existing word documents open in Print Layout

G

Gee

I have several documents that when I open, I constantly have to change the
view form normal to print layout. How can I change this so that all my
documents open in print layout. A blank word template opens in print layout
but not once I save it.
 
S

Suzanne S. Barnhill

You can force the view with a macro; Graham will be along soon to provide
it.
 
S

Stefan Blom

The following macros in normal.dot should work:

Sub AutoNew()
With ActiveWindow.View
.Type = 3
.Zoom.Percentage = 100
End With
End Sub

Sub AutoOpen()
With ActiveWindow.View
.Type = 3
.Zoom.Percentage = 100
End With
End Sub

In the above code, you can choose another percentage than 100.

If you need help installing the macros, please see:
http://www.gmayor.com/installing_macro.htm
 
Top