delphi 7.0 中启动word的问题,虽然这个问题有些老,但还是想请各位大侠帮个忙(100分)

  • 主题发起人 主题发起人 cnjzy
  • 开始时间 开始时间
C

cnjzy

Unregistered / Unconfirmed
GUEST, unregistred user!
代码如下:
procedure TForm1.Button1Click(Sender: TObject);
var Word: variant;
begin
try
Word:= GetActiveOleObject('Word.Application');
except
try
Word:= CreateOleObject('Word.Application');
except
Exit;
end;
end;
end;
问题是只要word 没有被打开,执行到GetActiveOleObject处就出错,显示什么
……class eolesyserror with message '操作无法使用'.process stopped.
久思不得其解
 
到Delphi的Tools->Debugger Options->Language Exceptions中去掉Stop on Delphi Exceptions 前的对构去掉就可以了
你没有打开word 调用GetActiveOleObject当然出错了
 
水平是差了些,不过我想虽然不能GetActiveOleObject,但应该可以CreateOleObject一个
另外:
到Delphi的Tools->Debugger Options->Language Exceptions中去掉Stop on Delphi Exceptions 前的对构去掉就可以了
这样干妥当吗?——初学者
 
谢谢estorm
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
928
SUNSTONE的Delphi笔记
S
M
回复
6
查看
778
xusong168
X
后退
顶部