2007 Styles View

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'd like the styles menu open every time I use Word 2007. Anyone know how to
do this?
 
Do you mean the Styles task pane (which you see when you press
Ctrl+Alt+Shift+S, or when you click the arrow in the lower right corner of
the Styles section of the Home ribbon tab)?

If so, you can make it appear for an existing document by creating an
AutoOpen macro that contains the following command:


CommandBars("Styles").Visible = True

For new document, create an AutoNew macro that contains that command. For
more on automatic macros, see Word Help or visit the .vba newsgroup.
 
Actually, there seems to be an issue with that command (generates an error
if the task pane hasn't been displayed in the current session for some
reason), use the following instead:

Application.TaskPanes(wdTaskPaneFormatting).Visible = True

--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com
 

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

Back
Top