Error Indication

G

Guest

When using the grammer/spell check option in MS Word 2003, it gives
indication of an error with a squiggly red underline where the program
suspects the error is. My question is, can one change the way it does this?
For instance, make it highlight the entire word or something to that effect.
I ask because when proofing a long document, I tend to do so with multiple
pages on the screen (I usually have the page view size set at 50%, thus
giving me three pages across), and seeing those small squiggly red underlines
is at times quite difficult.

So... can this be done. and if so, how?

Thanks in advance for any suggestions.

Mike
 
D

Doug Robbins - Word MVP

Running a macro containing the following code will change the color of the
font of mis-spelled words.

Dim anerror As Range
For Each anerror In ActiveDocument.SpellingErrors
anerror.Font.Color = wdColorRed
Next anerror

After you have corrected the errors, you will want to change the font back
to auto. You can do that with the following code in a macro:

ActiveDocument.Range.Font.Color = wdColorAutomatic

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 

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