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?

Re: underline in red by Vince

Vince
Sun Feb 20 20:08:28 CST 2005

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.

"sarah" <sarah@discussions.microsoft.com> wrote in message
news:248BB5D7-A0DA-4C0C-B08F-7DBADED7E5AD@microsoft.com...
> 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?



Re: underline in red by sarah

sarah
Mon Feb 21 04:57:02 CST 2005

thanks!

"Vince" wrote:

> 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.
>
> "sarah" <sarah@discussions.microsoft.com> wrote in message
> news:248BB5D7-A0DA-4C0C-B08F-7DBADED7E5AD@microsoft.com...
> > 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?
>
>
>