I have just started using Word 2003 coming from Word 2000. The rulers were
always there everytime 2000 started, any document, rain hail or shine - no
matter what.
These things are useful for setting tabs, adjusting all sorts of things. Now
in Word 2003 they are not on by default nor will they stay on when they are
switched on. They stay on for a while then seem to come and go at random.
Also switching them on is not qhick - it is necessary to go to a menu to do
it.
Has anyone any ideas please?
Paul.
Graham Mayor - 21 Aug 2005 09:57 GMT
Word 2003 has a habit of losing settings configured in tools > options. The
only certain cure is to force on the ones that go awry using auto macros.
The ones that affect me most are fixed as follows (includes rulers).
Sub AutoNew()
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
End Sub
http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> I have just started using Word 2003 coming from Word 2000. The rulers
> were always there everytime 2000 started, any document, rain hail or
[quoted text clipped - 9 lines]
>
> Paul.