I want to put a line in the auto open macro that will turn on the styles &
formatting task pane. This gets me the task pane:
CommandBars("Task pane").Visible = True
but I can't figure out how to specifically get the styles and formatting pane.
Thank you.

Re: Make Styles and Formatting Task Pane Visible by Jay

Jay
Mon Feb 05 14:11:49 CST 2007

The line you need is

Application.TaskPanes(wdTaskPaneFormatting).Visible = True

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Mon, 5 Feb 2007 10:53:01 -0800, Karin
<Karin@discussions.microsoft.com> wrote:

>I want to put a line in the auto open macro that will turn on the styles &
>formatting task pane. This gets me the task pane:
>CommandBars("Task pane").Visible = True
>but I can't figure out how to specifically get the styles and formatting pane.
>Thank you.