下面给出我的部分代码,希望大家再研究研究!
//replace the text
//*----替换标题----------
findtext:='#Header';
matchcase:=false;
matchwholeword:=true;
matchwildcards:=false;
matchsoundslike:=false;
Foroard:=true;
wrap:=wdFindContinue;
format:=false;
Replacewith:=AHeader;
replace:=true;
worddocument.Range.Find.Execute(FindText,matchcase,matchwholeword,matchwildcards,matchsoundslike,
matchallwordforms,Foroard,wrap,format,replacewith,replace);
结果是只替换了第一个字符串!如何将所有该字符串替换呢?