You can change the view and zoom settings for a template (see
http://word.mvps.org/faqs/general/SaveViewAndZoom.htm) which affects
new documents based on that template. But for existing documents you
must make the change for each individual document.

Signature
Stefan Blom
Microsoft Word MVP
> 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.
Gee - 26 May 2005 14:01 GMT
Yes - that's what I thought. Pity that Bill Gates doesn't think of these
things ...!!!
> You can change the view and zoom settings for a template (see
> http://word.mvps.org/faqs/general/SaveViewAndZoom.htm) which affects
[quoted text clipped - 8 lines]
> print layout
> > but not once I save it.
Suzanne S. Barnhill - 26 May 2005 14:31 GMT
You can force the view with a macro; Graham will be along soon to provide
it.

Signature
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
> Yes - that's what I thought. Pity that Bill Gates doesn't think of these
> things ...!!!
[quoted text clipped - 11 lines]
> > print layout
> > > but not once I save it.
Stefan Blom - 26 May 2005 14:56 GMT
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

Signature
Stefan Blom
Microsoft Word MVP
> You can force the view with a macro; Graham will be along soon to provide
> it.
[quoted text clipped - 14 lines]
> > > print layout
> > > > but not once I save it.