VBA Gerus,

Is there a function to locate misspelled words that were identified by
Word 2003 & 2007? Thanks.

Charlie from Texas

Re: Locating Misspelled words by Doug

Doug
Thu Feb 21 16:32:22 PST 2008

Not really sure what you mean by locate, but the following will select each
mispelled word and display it in a message box

Dim aspe As Range
For Each aspe In ActiveDocument.SpellingErrors
aspe.Select
MsgBox aspe.Text
Next


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

<Charlie Mac> wrote in message
news:jomrr35l5kl0hqom241k31cqlfpsp6cdh8@4ax.com...
> VBA Gerus,
>
> Is there a function to locate misspelled words that were identified by
> Word 2003 & 2007? Thanks.
>
> Charlie from Texas



Re: Locating Misspelled words by Charlie

Charlie
Mon Feb 25 09:28:28 PST 2008

Thanks, that is exactly what I needed.

Charlie in Texas
On Fri, 22 Feb 2008 10:32:22 +1000, "Doug Robbins - Word MVP"
<dkr@REMOVECAPSmvps.org> wrote:

>Dim aspe As Range
>For Each aspe In ActiveDocument.SpellingErrors
> aspe.Select
> MsgBox aspe.Text
>Next