Start by disallowing opening in Reading Layout. This option is on the
general tab of the options dialog.
I have code in an AutoExec that sets my normal view and then switches me
into PageLayout view. It may be overkill.
Sub AutoNew()
'
' AutoNew Macro
' Macro written 12/13/01 by Charles Kyle Kenyon
' Switches to normal view, sets style panel, switches to print view
'
On Error GoTo NoOpenDoc
If ActiveWindow.View.SplitSpecial = wdPaneNone Then
ActiveWindow.ActivePane.View.Type = wdNormalView
Else
ActiveWindow.View.Type = wdNormalView
End If
ActiveWindow.StyleAreaWidth = InchesToPoints(1.25)
'
' Set to print view
'
If ActiveWindow.View.SplitSpecial = wdPaneNone Then
ActiveWindow.ActivePane.View.Type = wdPrintView
Else
ActiveWindow.View.Type = wdPrintView
End If
Exit Sub 'skip error handler
'
NoOpenDoc: ' No open document error handler
Documents.Add ' Add blank document based on normal.dot
Resume
End Sub
Sub AutoExec()
AutoNew
End Sub
Like I said, this may be overkill.
--
Charles Kenyon
Word New User FAQ & Web Directory:
http://addbalance.com/word
Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide)
http://addbalance.com/usersguide
See also the MVP FAQ:
http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.