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