S
songbo_pp
Unregistered / Unconfirmed
GUEST, unregistred user!
dll工程中声明的一个函数,如下,功能是调用一个浏览器;
procedure launchExplorer();stdcall;
var
IE : Variant;
begin
IE := CreateOleObject('InternetExplorer.Application');
end;
编译我通过了,但是我在调用时老是报错,“EOLEsysError with message 尚未调用CoInitilization”
是不是dll不能调用OLE?
procedure launchExplorer();stdcall;
var
IE : Variant;
begin
IE := CreateOleObject('InternetExplorer.Application');
end;
编译我通过了,但是我在调用时老是报错,“EOLEsysError with message 尚未调用CoInitilization”
是不是dll不能调用OLE?