can't see header and footer toolbar word 2003

B

bebopluvr

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!
 
H

Herb Tyson [MVP]

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)?
 
B

Beth Melton

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/
 

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