读书人

delphi监听ie onDocumentComplete,该

发布时间: 2013-08-09 15:16:24 作者: rapoo

delphi监听ie onDocumentComplete
我现在已经hook上ie了
var
shellWindows : TShellWindows;
shell : IShellWindows;
x: Olevariant;
c : IHTMLDocument2;
mDisp : IDISPATCH;
begin
shellWindows := TShellWindows.Create(nil);
shellWindows.OnWindowRegistered := DShellWindowsEvents1WindowRegistered;
shellWindows.OnWindowRevoked := DShellWindowsEvents1WindowRevoked;
shellWindows.Connect;
end;

我想监听当页面加载完成 应该怎么触发事件,应该怎么写 谢谢

读书人网 >.NET

热点推荐