Start Word with Outline toolbar

G

George Wilson

I am currently using Word 2002 on a Windows XP system. I
would like to start word and have the outline toolbar
present. Every time I enable the toolbar and exit word, it
is no longer present when I reopen word. I tried opening
the normal.dot and saving it with the toolbar in place and
this does not seem to help. Any suggestions?
TIA
George
 
S

Stefan Blom

The following two macros should do the trick. Make sure you store them
in the normal.dot template.

Sub AutoOpen
ActiveWindow.View.Type = wdOutlineView
CommandBars("Outlining").Enabled = True
CommandBars("Outlining").Visible = True
End Sub

Sub AutoNew
ActiveWindow.View.Type = wdOutlineView
CommandBars("Outlining").Enabled = True
CommandBars("Outlining").Visible = True
End Sub

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top