Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MS Word - Getting spellcheck to skip Capitalized Words 1

Status
Not open for further replies.

pachad

Programmer
Mar 13, 2003
45
US
Can anyone tell me how to get MS Word to skip words beginning with a Capital Letter (i.e. John Smith)?
 
Hi pachad,

I don't think the option is available, but if this is related to your other post then you could adapt the code I posted ..

[blue]
Code:
For Each MisSpelling In ActiveDocument.SpellingErrors
    [red]If Left(MisSpelling, 1) <> UCase(Left(MisSpelling, 1)) Then _[/red]
        MisSpelling.Italic = True
Next[/blue]

Enjoy,
Tony

--------------------------------------------------------------------------------------------
We want to help you; help us to do it by reading this: Before you ask a question.
Excel VBA Training and more Help at [url=http://www.vbaexpress.
 
Again, simple is best.

Thanks much.

-pachad
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top