Word doesn't offer any way to customize that color. The nearest you
can do is to run a macro that sets another colored underline on the
sentence containing the grammar error. This will usually be more text
than the standard grammar check underlines.
This is the macro (change the "wdColorViolet" to a color of your
choice):
Sub ColorGrammarErrors()
Dim oGrm As Range
For Each oGrm In ActiveDocument.Range.GrammaticalErrors
oGrm.Underline = wdUnderlineWavy
oGrm.Font.UnderlineColor = wdColorViolet
Next oGrm
End Sub
The RegOptions macro in the Support.dot template for Word 2002 does allow
you to change the underline color for both spelling and grammar. Presumably
these same Registry keys can be edited manually in Word 2000?
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.