在C:\Program Files\Borland\Delphi6\Demos\ActiveX\OleAuto\SrvComp\word\中有现成的例子
如果编译错误修改如下
if ChkBoxNewDoc.Checked then
    begin
     WordApplication.Documents.Add(Template, NewTemplate,emptyparam,emptyparam);
      {Assign WordDocument component}
      WordDocument.ConnectTo(WordApplication.Documents.Item(ItemIndex));
    end;这样就可以了