Hi George,
I'm not sure if you mean you want to know how you can select highlighted
text in an document, have a look at this: (simpel macro recording)
Selection.Find.ClearFormatting 'To be sure cancel previous format
search
Selection.Find.Highlight = True 'Search for highlighted text
With Selection.Find
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True 'Format option in Search should be active
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute 'Do search
Make a loop around this code to select all the highlights in your document
one by one and execute your code.
Hope this helped.
Edwin Witjens
Quote:
> Does anyone know how i can "capture" a highlighting text in word97??
> George