Written by Allen Wyatt (last updated November 26, 2020)
This tip applies to Word 97, 2000, 2002, and 2003
Dody experienced a problem with her Header and Footer toolbar. It used to be visible, but all of a sudden the toolbar is no longer displayed when editing either the header or the footer area.
It is possible that the toolbar is simply not being displayed where you are used to looking for it. When you choose View | Header and Footer, the toolbar should appear on the screen, but may not be floating over your document. The Header and Footer toolbar could be docked to one of the sides of your program window. It could be located at the top, bottom, left, or right sides of your screen, at the border of the program window itself. If so, you can drag the left edge of the toolbar (if it is docked at the top or bottom of the screen) or the top edge of the toolbar (if it is docked at the left or right of the screen) toward the middle of the screen so it will again float.
It is also possible that the toolbar really is being displayed, but has been dragged off-screen or is in a part of the screen that is not visible. (For instance, you could have changed to a lower screen resolution, and whereas the toolbar was visible at the higher resolution, now it is outside of the visible screen area.) If that is the case, you can use a small macro to return the toolbar to a visible area of your screen:
Sub ShowTB() ActiveWindow.ActivePane.View.Type = wdPrintView ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader With CommandBars("Header and Footer") .Visible = True .Position = msoBarFloating .Left = 250 .Top = 250 End With End Sub
This macro first places the insertion point within the header. It then makes sure that the Header and Footer toolbar is visible, that it is floating, and that it is located 250 pixels from the left and top of the screen, which should be in the visible area.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (7747) applies to Microsoft Word 97, 2000, 2002, and 2003.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Need to adjust all the footers or headers in a document that uses lots of them? It's easy to do if you understand how the ...
Discover MoreIf you don't want the information in a header of footer to be changed by users of your document, there are a couple of ...
Discover MoreWhen you print a document, does the position of the page footer seem to move left and right? This could have to do with ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-04-18 09:23:44
Steve Dunham
When in doubt, reboot. We had a surprise power outage in the middle of the night, and in the morning the monitor was displaying a warning that video was out of range. The display was hanging off one side of the monitor, and one of the toolbars was off the top edge. The buttons on the monitor didn't help, but rebooting the computer put everything back where it was before.
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments