Header and footer toolbar

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

Guest

Hi,
my "Header and footer toolbar" does NOT apperat when I select "View/ Header
and Footer". I have been able to see it earlier, but now it has disappeared.
How do I get it back again?
 
Run the below macro (if you need assistance, see
http://gmayor.com/installing_macro.htm); it docks the Header/Footer
toolbar to the left side of the Word window, and you can then drag the
toolbar to the desired position.

Sub MoveHeaderFooterToolbar()
ActiveWindow.View.SeekView = wdSeekCurrentPageHeader
With CommandBars("Header and Footer")
.Enabled = True
.Visible = True
.Position = msoBarLeft
End With
End Sub

If the macro doesn't help, see
http://word.mvps.org/FAQs/AppErrors/MissingMenusEtc.htm.

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 

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