How do I make a toolbar always show up upon starting?

S

snow_white53

I always use the outlining toolbar, but I have to go to View, toolbars,
Outlining at least three times a day and it's really annoying. How can I make
it automatically start up with Word?
 
G

Graham Mayor

Add the line

CommandBars("Outlining").Visible = True

to each of an autonew and an autoopen macro

but it is probably simpler just to add the following macro to a personal
toolbar

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

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

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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