风
风扬
Unregistered / Unconfirmed
GUEST, unregistred user!
delphi本身提供了Excel2000等Office的UNIT,但在以前看到的资料或别人的代码中,都没有看到用先期连接的,一般都是用Varaint来获得后期连接。即
var
v:varaint;
begin
V:=CreateOleObject('Excel.Application'); //获得Execl Com服务器的后期连接
...
end;
但我在实际使用中发现这样速度太慢了,请教有没有用disp接口来完成的方法?
var
v:varaint;
begin
V:=CreateOleObject('Excel.Application'); //获得Execl Com服务器的后期连接
...
end;
但我在实际使用中发现这样速度太慢了,请教有没有用disp接口来完成的方法?