hi,all
new an activex as following:
<script language=jscript>
var test = new ActiveXObject("Test.Obj1.1");
//how to delete the object from the process of IE ?
// test = null; doesn't make a call to destructor of Obj1;
</script>
thanks!
bruce barker - 23 Mar 2004 19:01 GMT
you can't. once IE loads an active/x control, it keeps a reference to it
until it unloads. this is by design to cache controls.
-- bruce (sqlwork.com)
> hi,all
>
[quoted text clipped - 7 lines]
>
> thanks!