I am calling a VB6 ActiveX exe from my VB.NET application. It seems to work okay except I when I exit the program the executable is still running in the workstation processes. Here is the code used.
Dim AvRebuild as
New RebuildUtility.clsRebuild()AvRebuild.StartXRebuild(......)
I launch a number of other VB6 exe's using System.Diagnostics.Process, where I can add a handler so I can remove the process in the OnProcessExit event. Is there something similar for ActiveX exe's?
Thanks
Tim