Hi Kister,
Do you know if this is possible?
some VBA required, probabaly,
and, the thing is, that I don't have any in this way
corrupted document around.
Try, using F5 in the VBA-editor first.
Sub Macro4ss()
Dim rChr As Range
Dim oDlg As Dialog
Set oDlg = Dialogs(wdDialogInsertSymbol)
For Each rChr In ActiveDocument.Range.Characters
If Asc(rChr) = 40 Then
rChr.Select
oDlg.Update
If oDlg.Font = "Symbol" Then
rChr.HighlightColorIndex = wdYellow
Stop ' remove after testing
' F5 to continue
End If
End If
Next
End Sub
Then search for highlighted text.
There are other ways, of course.
HTH
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"