多线程操里操作webbrowser的 Frames

多线程操里操作webbrowser的 Frames
有这样一个函数,直接在窗体中运行正常,但放到线程里一到frames就报错

procedure TForm1.fillframese1(webbrowser:TWebBrowser;params:TStrings;frameindex:integer);
var
  Tabi:Integer;
  doc:IHTMLDocument2;
  Collection:IHTMLElementCollection;
  Element:IHTMLElement;
  frames:IDispatch;
  framew:IHTMLWindow2;
  i:OleVariant;
  s:string;
  ii,divi:Integer;
  input:IHTMLInputElement;
  docii:HTMLDocument;
  iframe:IWebBrowser;
begin
  try
    doc:=Webbrowser.document as IHTMLDocument2;
    i:=6;
    doc.all ;
    frames:=doc.frames.item(i);
    framew:=frames as IHTMLWindow2;
    docii:=framew.document as HTMLDocument;
    collection:=docii.all.tags('iframe') as IHTMLElementCollection;
    //ShowMessage(IntToStr(Collection.length));
    for ii:= 0 to collection.length -1 do
    begin
      iframe:= Collection.item(ii,varEmpty) as IWebBrowser; //在网上查过不少文章,最后自己尝试成功,关键就是这里。
      doc:=iframe.document as IHTMLDocument2;
      Element:=doc.body as IHTMLElement;

    end;
     //总结:获取Webbrowser的iframe的内容,需要把iframe元索强制转换为iwebbrowser接口,
     //之后,还要强制转换为ihtmlelement接口才可以成功访问iframe里面的元素,否则程序运行出错;
  except
  on e:exception do
    begin
      showmessage('fillframese1: '+params.Names[i]+' :'+e.Message);
    end;
  end;
end;



线程外正常,但放到IdTCPServer.Execute里调用,执行到这句就报错frames:=doc.frames.item(i);
并且已经加上  CoInitialize(nil); OleInitialize(nil);
不知道大家有没有遇到过,有什么解决方法?

 

转载于:https://www.cnblogs.com/peikeke316/p/3885919.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值