C
Chris
I have a class I am using the RCW on which allows IE to use as an ActiveX
object. The problem is that I holds onto the reference and locks the DLL.
There does not seem to be any way of releasing it when IE is done with it.
My client-side code is trivial:
try
{
obj = new ActiveXObject("Foo.Bar");
obj.DoSomething();
}
catch(e)
{
document.write(e);
}
Is there anyway to get the object released when done so IE does not lock the
DLL?
-- Chris
object. The problem is that I holds onto the reference and locks the DLL.
There does not seem to be any way of releasing it when IE is done with it.
My client-side code is trivial:
try
{
obj = new ActiveXObject("Foo.Bar");
obj.DoSomething();
}
catch(e)
{
document.write(e);
}
Is there anyway to get the object released when done so IE does not lock the
DLL?
-- Chris