Wavy Underlines

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking for a way to change the color of the wavy underlines that Word
uses with grammer check. I'm using Word 2000.
 
I am looking for a way to change the color of the wavy underlines that Word
uses with grammer check. I'm using Word 2000.

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

See http://www.gmayor.com/installing_macro.htm if necessary.
 
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.
 
Back
Top