AttachIE Method (IHTTPAnalyzerAddOn)
Top  Previous  Next

Syntax
object .AttachIE(IE As IWebBrowser2 )

Arguments
IE An IWebBrowser object reference. This is a reference to an Internet Explorer instance which the HTTPAnalyzer IE Add-on object should be attached.

Description
The Attached method is used to attach HTTPAnlayzerAddon object to an IE instance which be created by other components.

Examples
JavaScript example:
var  ie=new ActiveXObject("InternetExplorer.Application");
var addon=new ActiveXObject("IEHTTPAnalyzer.HTTPAnalyzerAddOn"
);
addon.AttachIE
(ie);
addon.start();
.........

addon.Stop();


.
Remark
If by the time "Start" method is called, you still haven't called the attachIE method, HTTPAnalyzer stand-alone will create an IE instance and attach to it.