What I think you are describing is the zoom setting - see
http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm
or
You can control the zoom with auto macros in the normal template. The
following will set it to 100% zoom regardless of what the document thinks it
should be. Change the 100 to the preferred zoom level that causes Word to
display in half the screen (which will vary according to Window size).. If
you want normal rather than print layout view swap the apostrophe from the
beginning of the line where indicated to the other.
See
http://www.gmayor.com/installing_macro.htm
Sub AutoNew()
With ActiveWindow.View
'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
End With
End Sub
Sub AutoOpen()
With ActiveWindow.View
'**********************
.Type = wdPrintView
'.Type = wdNormalView
'**********************
.Zoom.Percentage = 100
End With
End Sub
if however it is the complete application window size and position that you
want to fix, then Word should open with the last used Window size and
position, but again you can force the issue with a macro e.g.
Sub AutoExec()
Application.Move Left:=450, Top:=9
Application.Resize Width:=493, Height:=677
End Sub
Record a macro while you position the window as you require it then
substitute the numbers in the above macro (or name your recorded macro
AutoExec so that it contains the two lines as above.).
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>