underline in red

S

sarah

how do i underline words in red just like they appear when they are spelt
wrong and spell and grammar highlights them?

Can i do this using vba?
 
V

Vince

Selection.Font.UnderlineColor = wdColorRed
Selection.Font.UnderLine = wdUnderlineWavy

Just select something and run the above. Change the color to green to
simulate a grammar error.
 
S

sarah

thanks!

Vince said:
Selection.Font.UnderlineColor = wdColorRed
Selection.Font.UnderLine = wdUnderlineWavy

Just select something and run the above. Change the color to green to
simulate a grammar error.
 
Top