C
chi8
Unregistered / Unconfirmed
GUEST, unregistred user!
给在word模板中加上标签,以实现简单的word文件输出,在本机中使用没有问题,
可是在别的机器中提示为“不支持此接口”请问怎么解决该问题?
附上简单代码
uses
word97,word2000,OleServer,ComCtrls,//ComObj{本来是在implementation后的uses中写得};
……
interface
uses ComObj,……;
var
wordapp:variant;
…………
begin
if(Application.MessageBox(’你确定要生成文档吗?’#13#10,
’提示’,MB_OKCANCEL)=IDOK) then
begin
wordapp:=CreateOLEObject(’Word.Application’);
wordapp.visible:=true;
wordapp.documents.add(filepath,False);
wordapp.Documents.Item(1).Bookmarks.Item(’item_1’).Range.InsertAfter(’sss’);
可是在别的机器中提示为“不支持此接口”请问怎么解决该问题?
附上简单代码
uses
word97,word2000,OleServer,ComCtrls,//ComObj{本来是在implementation后的uses中写得};
……
interface
uses ComObj,……;
var
wordapp:variant;
…………
begin
if(Application.MessageBox(’你确定要生成文档吗?’#13#10,
’提示’,MB_OKCANCEL)=IDOK) then
begin
wordapp:=CreateOLEObject(’Word.Application’);
wordapp.visible:=true;
wordapp.documents.add(filepath,False);
wordapp.Documents.Item(1).Bookmarks.Item(’item_1’).Range.InsertAfter(’sss’);