Page header has disappeared

Home Up Search This Site What's New? Audio On CDR Favourites Downloadable files Photo Gallery 2002 Photo Gallery 2003 Photo Gallery 2004/5 Photo Gallery 2006/7 Photo Gallery 2008 UK Photo Gallery Ireland Photo Gallery Cats Photo Gallery 

 

 

Google
 

 

There is no charge for using any of the material (for personal use) on this web site, but if you wish to make a contribution to the ever growing running costs, any donation would be much appreciated. Click the adjacent button to access PayPal
Page header has disappeared?
White space between pages.

Word 2003 seems especially prone to losing the configuration settings in tools > options. One such setting that produces an alarming effect is that relating to the display of white space between pages. When this setting is unchecked the page display in print layout view appears to have lost the header section, as shown in the first illustration

Though primarily affecting Word 2003,  the problem does sometimes manifest itself in Word 2007 also.

Once recognised for what it is, this issue is quickly corrected by resetting the aforementioned tools > options > view item:

 

or in Word 2007

or by clicking in the narrow grey band between the top of the page and the horizontal ruler - as shown below. In the case of 2007 double clicking is required making it more difficult to set this option by accident.

 

And there lies the usual reason for the loss in the first place. It is all too easy (in Word 2003 at least) to click in the area below the ruler and toggle this setting:

Note:

I am leaning to the view that, for Word 2003, it may not be a bad idea to setup the preferred environment for all documents by using autonew and autoopen macros. In my own systems I set some of the options that cause me the most concern (including the white space correction highlighted in red) i.e.:

Sub Autonew()
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
    .Type = wdPrintView
    .Zoom.Percentage = 100
    .FieldShading = wdFieldShadingWhenSelected
    .DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
End Sub

Sub
AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
    .Type = wdPrintView
    .Zoom.Percentage = 100
    .FieldShading = wdFieldShadingWhenSelected
    .DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
End Sub

It is a simple matter to set all the preferred options, then record a macro switching between the pages of tools > options to produce a listing of all those preferences, which can be added as required into the above macros.

If you don't know how to use the above listings, see the separate page on installing macros