谁用过这句 webbrowser1.Document.QueryInterface(IHTMLDocument2,iDoc1);(0分)

  • 主题发起人 主题发起人 dana
  • 开始时间 开始时间
D

dana

Unregistered / Unconfirmed
GUEST, unregistred user!
只要这个循环30次内存至少减了10%
var IDoc1: IHTMLDocument2;
begin
for i:=0 to 30 do
begin
webbrowser.Document.QueryInterface(IHTMLDocument2,iDoc1);
end;
end;
 
有谁用过?
 
没有释放资源
 
程序运行中如何释放?
 
var IDoc1: IHTMLDocument2;
Hr:HRESULT;
begin
for i:=0 to 30 do
begin
Hr:=webbrowser.Document.QueryInterface(IHTMLDocument2,iDoc1);
if Successed(Hr) then
IDoc1._Release;
end;
end;
 
mypine:太感谢你了,可惜我没分可给你了,真不好意思,来日有机会一定补上。
 
接受答案了.
 
后退
顶部