The header and footer toolbar is missing in action. I tried:

1. visual basic commands -- visible=true, etc.
2. looking for corruptions -- no even in a blank normal document the toolbar
is missing.
3. tools customize menu. The header and footer check box is checked but it
will not uncheck. I haven't seen that behavior addressed anywhere.

Please help; I need that toolbar!

Re: can't see header and footer toolbar word 2003 by Herb

Herb
Fri Aug 24 18:21:22 CDT 2007

What happens if you start Word in safe mode or using the /a switch (start -
run - winword.exe /a; or for safe mode, hold down Ctrl as Word is starting)?

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


"bebopluvr" <bebopluvr@discussions.microsoft.com> wrote in message
news:A51B35F2-0BBE-4841-A5C3-87E6F4E808B2@microsoft.com...
> The header and footer toolbar is missing in action. I tried:
>
> 1. visual basic commands -- visible=true, etc.
> 2. looking for corruptions -- no even in a blank normal document the
> toolbar
> is missing.
> 3. tools customize menu. The header and footer check box is checked but
> it
> will not uncheck. I haven't seen that behavior addressed anywhere.
>
> Please help; I need that toolbar!


Re: can't see header and footer toolbar word 2003 by Beth

Beth
Fri Aug 24 18:30:10 CDT 2007

You were probably pretty close with the VBA method. Try this instead:

Sub ResetToolbar()
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
With CommandBars("Header And Footer")
.Reset
.Enabled = True
.Visible = True
End With
End Sub

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/books/9801.aspx#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"bebopluvr" <bebopluvr@discussions.microsoft.com> wrote in message
news:A51B35F2-0BBE-4841-A5C3-87E6F4E808B2@microsoft.com...
> The header and footer toolbar is missing in action. I tried:
>
> 1. visual basic commands -- visible=true, etc.
> 2. looking for corruptions -- no even in a blank normal document the
> toolbar
> is missing.
> 3. tools customize menu. The header and footer check box is checked but
> it
> will not uncheck. I haven't seen that behavior addressed anywhere.
>
> Please help; I need that toolbar!