wApp.Selection.Find.ClearFormatting;
    wApp.Selection.Find.Replacement.ClearFormatting;
    wApp.Selection.Find.Text:=docText;
    wApp.Selection.Find.Replacment.Text:=newText;
    wApp.Selection.Find.Forward:=True;
    wApp.Selection.Find.Wrap:=wdFindContinue;
    wApp.Selection.Find.Format:=False;
    wApp.Selection.Find.MatchCase:=False;
    wApp.Selection.Find.MatchWholeWord:=True;
    wApp.Selection.Find.MatchByte:=True;
    wApp.Selection.Find.MatchWildcards:=False;
    wApp.Selection.Find.MatchSoundsLike:=Fasle;
    wApp.Selection.Find.MatchAllWordForms:=Fasle;
    wApp.Selection.Find.Execute(Replace:=wdReplaceAll);

wdReplaceAll,wdFindContinue均提示有错
已经Uses COMOBJ