打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
怎样访问Internet Explorer中的WebBrowser
[Delphi]怎样访问Internet Explorer中的WebBrowser [转贴 2009-12-30 19:10:38]   
字号:

下面就是一个例子展示如何从打开的Internet Explorer中取得其网页元素的HTML源代码:



const
  RSPSIMPLESERVICE = 1;
  RSPUNREGISTERSERVICE = 0;

type
  TObjectFromLResult = function(LRESULT: lResult; const IID: TIID; WPARAM: wParam; out pObject): HRESULT; stdcall;

function GetIEFromHWND(WHandle: HWND; var IE: IWebbrowser2): HRESULT;
var
  hInst: HWND;
  lRes: Cardinal;
  MSG: Integer;
  pDoc: IHTMLDocument2;
  ObjectFromLresult: TObjectFromLresult;
begin
  hInst := LoadLibrary('Oleacc.dll');
  @ObjectFromLresult := GetProcAddress(hInst, 'ObjectFromLresult');
  if @ObjectFromLresult <> nil then
  begin
    try
      MSG := RegisterWindowMessage('WM_HTML_GETOBJECT');
      SendMessageTimeOut(WHandle, MSG, 0, 0, SMTO_ABORTIFHUNG, 1000, lRes);
      Result := ObjectFromLresult(lRes, IHTMLDocument2, 0, pDoc);
      if Result = S_OK then
        (pDoc.parentWindow as IServiceprovider).QueryService(IWebbrowserApp, IWebbrowser2, IE);
    finally
      FreeLibrary(hInst);
    end;
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
var
  All: IHtmlElementCollection;
  HtmlElement: IHtmlElement;
  I: Integer;
  Document: IHtmlDocument2;
  IE: IWebBrowser2;
  Wnd: HWND;
  WndChild: HWND;
begin
  Wnd := FindWindow('IEFrame', nil);
  if Wnd = 0 then
  begin
    MessageDlg('No Running instance of Internet Explorer!', mtError, [mbOK], 0);
  end;
  // walk Shell DocObject View->Internet Explorer_Server
  WndChild := FindWindowEX(Wnd, 0, 'Shell DocObject View', nil);
  if WndChild <> 0 then
  begin
    WndChild := FindWindowEX(WndChild, 0, 'Internet Explorer_Server', nil);
    if WndChild <> 0 then
    begin
      GetIEFromHWnd(WndChild, IE); //Get Iwebbrowser2 from Handle
      Document := IE.Document as IHtmlDocument2;
      if Assigned(Document) then
      begin
        All := Document.All;
        for I := 0 to All.Length - 1 do
        begin
          HtmlElement := All.item(i, 0) as IhtmlElement;
          SourceView.Lines.Add(IntToStr(i) + ' ' + HTmlElement.innerHTML);
        end;
      end;
    end;
  end;
end;


uses MSHTML,ActiveX 


TIID可能是TGUID
 


WndChild := FindWindowEX(Wnd, 0, 'Shell DocObject View', nil);
此句在IE7下获取不了句柄呀?
有没有人在IE7下获取'Shell DocObject View'的句柄的例子?
 


以下是TestComplete的脚本,可见IE 7下多了一个TabWindowClass,你应该知道该怎么做了吧!

p = Sys.WaitProcess("iexplore");
w = p.WaitWindow("IEFrame", "*", -1);
if (! w.Exists)
p = Sys.WaitProcess("explorer");
// IE should be running now...
if (p.Exists) {
w = p.Window("IEFrame", "*",1);
// Give IE 3 seconds to start, check for the IE7 TabWindowClass first...
if (w.WaitWindow("TabWindowClass", "*", -1, 3000).Exists)
ie = w.Window("TabWindowClass", "*").Window("Shell DocObject View").Window("Internet Explorer_Server", "", 1);
else
ie = w.Window("Shell DocObject View").Window("Internet Explorer_Server", "", 1);
page = ie.Page("*");


非常感谢您 Icebird,我在
WndChild := FindWindowEX(Wnd, 0, 'Shell DocObject View', nil);
前面增加了一句代码,
WndTab := FindWindowEX(Wnd, 0, 'TabWindowClass', nil);
就可以在IE7下获取句柄了。


本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
Delphi 全面控制Windows任务栏
Shell扩展编程实现Windows2000桌面图标透明
Delphi通过IE窗口句柄获取网页接口(IWebBrowser2) good
用WebBrowser实现HTML界面的应用
Delphi实现HTMLWebBrowser实现HTML界面
指定Webbrowser控件内核版本的方案
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服