View Single Post
  #5   Report Post  
Posted to microsoft.public.word.docmanagement
KimboR KimboR is offline
external usenet poster
 
Posts: 2
Default Outlining Toolbar in Word 2003

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.



"Graham Mayor" wrote:

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
Word MVP web site http://word.mvps.org



KimboR wrote:
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?