Wavy Underlines

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.
 
J

Jay Freedman

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.
 
S

Suzanne S. Barnhill

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top