I am using VB.NET for a web application that starts some process using CreateObject, for example:
Dim AVObject = CreateObject("avwin.application")
After everything is done, everything is closed and stopped using the appropriate release functions, however, for some reason, the process remains.
Is there a way by which I can get the process id of the running process to explicitly kill it before terminating?
thank
source
share