Easy enough :)
Create the following macros in normal.dot -
http://www.gmayor.com/installing_macro.htm
Sub Autonew()
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
.Type = wdOutlineView
.Zoom.Percentage = 100
End With
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
.Type = wdOutlineView
.Zoom.Percentage = 100
End With
End Sub
If you also want the master document toolbar (though master documents are
fraught with danger and a frequent cause of document corruption) then change
wdOutlineView
to
wdMasterView
in both macros.
If you already have one or other of these macro names in normal.dot, add the
code to the existing macros.

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>><
> I am working on a project (and anticipate doing so for at least a few
> years!) in which using the outline toolbar is needed every time I
> open Word XP. Is there any way to have it appear every time I start
> Word XP?
>
> TIA
The Poster Child - 11 Jun 2004 16:20 GMT
works fine...but I don't need to open the document in outline view. I am
using outline tools to create a table of contents, which I update regularly
while working on the document. The macro opens the documents in ouline view
with is not needed. I just needed the toolbar.
> Easy enough :)
>
[quoted text clipped - 33 lines]
> >
> > TIA
The Poster Child - 11 Jun 2004 16:28 GMT
Grrr..when I go to print layout instead of outline view, the toolbar goes
away ///
> Easy enough :)
>
[quoted text clipped - 33 lines]
> >
> > TIA
Graham Mayor - 11 Jun 2004 18:32 GMT
Try the following instead:
Sub Autonew()
ActiveWindow.ActivePane.DisplayRulers = True
CommandBars("Outlining").Visible = True
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
CommandBars("Outlining").Visible = True
End Sub

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>><
> Grrr..when I go to print layout instead of outline view, the toolbar
> goes away ///
[quoted text clipped - 45 lines]
>>>
>>> TIA