Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Menus and Toolbars / June 2004

Tip: Looking for answers? Try searching our database.

Outline toolbar

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
The Poster Child - 06 Jun 2004 19:43 GMT
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
Graham Mayor - 07 Jun 2004 08:17 GMT
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
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.