L
Lou
I have a COM object:
ComObject myObj = new ComObject;
This object starts another application.
At some point I want to destroy this immediately so the application it
started closes.
How Do I do this.
In VB it is
ComObject = Nothing;
I tried ComObject = null;
but that did not release the reference and the app it started stayed open?
-Lou
ComObject myObj = new ComObject;
This object starts another application.
At some point I want to destroy this immediately so the application it
started closes.
How Do I do this.
In VB it is
ComObject = Nothing;
I tried ComObject = null;
but that did not release the reference and the app it started stayed open?
-Lou