AttachByPID (IHTTPAnalyzerFirefox)
Top  Previous  Next

Syntax
blSuccess=object .AttachByID (ProcessID as integer )

Arguments
ProcessID A Long value which contains the ID of the firefox Process to be attached to.


Return Type
A Boolean value. If the operation succeeds, returns will be true. If the operation fails, returns will be false.

Examples
JavaScript example:
var addon=new ActiveXObject("HTTPAnalyzerFF.HttpAnalyzerFirefox");

ffProcesses=
Process.GetProcessesByName("firefox");

addon.
AttachByID(ffProcesses[0]);
addon.start();
addon.
NavigateAndWait("http://www.ieinspector.com", -1);
.........

addon.Stop();