Hi Eric,
Sub test0987()
Dim rDcm As Range
Set rDcm = ActiveDocument.Range
With rDcm.Find
.Text = "\(*\)"
.MatchWildcards = True
.Replacement.Text = ""
.Execute Replace:=wdReplaceAll
End With
End Sub
But think, whether this is really what you want.
And you might have to do some more cleaning
of your Doc as a result of the code above.

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
"red.sys" & chr(64) & "t-online.de"
Word 2002, Windows 2000
Eric - 03 Apr 2006 11:43 GMT
Alles gut! :)
/e
> Hi Eric,
>
[quoted text clipped - 14 lines]
> And you might have to do some more cleaning
> of your Doc as a result of the code above.