green underlining during spelling check

G

Gordon Filby

Hi,

Does anyone know how to find the green wavy lines under incorrect grammar or
spelling?

Thanks for any tips,

Regards,

Gordon Filby
 
G

Gordon Filby

No, sorry I meant using VBA - that's why I chose this group. I want to write
a macro to jump from one to the next.

GF
 
E

Ed

Sorry, Gordon. I wasn't watching the group name! Try
ActiveDocument.CheckGrammar
or
ActiveDocument.CheckSpelling

I've never used either of these, but both methods have Help topics that
should get you going.

Cheers!
Ed
 
K

Klaus Linke

Hi Gordon,

Try this:
Dim myRange As Range
Set myRange = Selection.GoToNext(wdGoToGrammaticalError)
myRange.Select

Regards,
Klaus
 

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