Outlining Toolbar in Word 2003

K

KimboR

If I switch on the Outlining toolbar in Word 2003 then close Word, the
toolbar does not reappear when I open Word again. This is the only toolbar
which gives me this problem, so I can't figure out why Normal.dot is not
saving this change, when it successfully saves every other toolbar I switch
on/off. Can anyone help?
 
G

Gnibtay

All I can say is I have the exact same problem, and would also appreciate
hearing from anyone who has a solution.
 
G

grammatim

The Outlining toolbar appears when you switch to Outline view. Why
would you want it visible at other times?
 
G

Graham Mayor

The Outlining toolbar is more closely associated with the Outline view. If
you want it to show on starting Word in other views, then add the following
line to an Autoexec macro in normal. dot

CommandBars("Outlining").Visible = True

and/or add a macro to a toolbar button to toggle the display of the bar on
and off thus:

With CommandBars("Outlining")
.Visible = Not .Visible
End With

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
K

KimboR

Thanks for your solution Graham. It was actually one of one of my colleagues
who wanted the Outlining toolbar displayed at all times and I think it's more
for the TOC side of things as opposed to the buttons for creating an outline
structure, etc. I'll pass your info on to him.
 

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