中国开发网: 论坛: 程序员情感CBD: 贴子 153360
李战: 代码如下:
procedure TfMain.FormCreate(Sender: TObject);
var
Cpc: IConnectionPointContainer;
Cp: IConnectionPoint;
Connection: Integer;
begin
Browser.Navigate('about:blank');
document := Browser.Document as IHTMLDocument2;

if Succeeded(document.QueryInterface(IConnectionPointContainer, CPC)) then
if Succeeded(CPC.FindConnectionPoint(DWebBrowserEvents2, CP)) then
CP.Advise(TSink.Create, Connection);

document.designMode := 'on';
end;

其中CPC.FindConnectionPoint(DWebBrowserEvents2, CP)一句取不到接口CP,难道不是DWebBroserEvents2,而是别的什么参数?
李战(leadzen)

相关信息:


欢迎光临本社区,您还没有登录,不能发贴子。请在 这里登录