Link to home
Start Free TrialLog in
Avatar of SteveQ2
SteveQ2Flag for United States of America

asked on

VB6 application's process continues running after application closes

My VB6 application continues to run indefinitely as a process after the application closes.  The phantom process uses 0 cpu but it takes up memory and ties up the .exe file as being in-use.  The task manager doesn't show it listed as applications but it does show it in the process list.

I added "EndProcess(function shown below) programname.exe" at the start of the program to kill any processes leftover from any previous executions.  Prior to that line of code, more and more phantom processes would appear in the process list each time the program ran. This line of code prevents the accumulation of phantom processes but I still can't get rid of the process that remains after the program finishes.  This problem only occurs when running the .exe.  When I run it in the IDE, it doesn't leave any processes running after it ends.

It looks to me through tracing in the IDE and msgboxes that all of the forms are being unloaded.  Shouldn't that clear out all of the memory and kill the application and process when the final form is unloaded?  I dynamically create a few controls while the program is running, are they removed from memory when the form is unloaded?  I also define some variables as public in a module.  Are the module's variables removed from memory when the final form is unloaded?  How can I determine what is remaining resident in memory after the program runs?  

Public Function EndProcess(ByVal sExeName As String) As Boolean
' This works at the beginning of the program to end any processes that are still running since the last time this program ran
   On Error GoTo Err_Handler  
   Dim oProcessCollection, oProcess, ok, ii
   Set oProcessCollection = GetObject("WinMgmts:").ExecQuery("SELECT * FROM Win32_Process WHERE Name = '" & sExeName & "'")   
   ii = oProcessCollection.Count
   Debug.Print "Total: " & ii   
   If oProcessCollection.Count > 1 Then
      For Each oProcess In oProcessCollection
         ok = (oProcess.Terminate = 0)
         If ok Then
            ii = ii - 1
            Debug.Print "Count: " & ii
            If ii = 1 Then
               Exit For
            End If
         End If
      Next
   End If   
   Exit Function
Err_Handler:
   Debug.Print Err.Description
   EndProcess = False
End Function

Open in new window

Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Do you have any "infinite processing loops" in your app with DoEvents() within to keep the app responsive?

What does your app do?
This generally happen when unhandled object exists in memory, cause program not to terminate properly....

I suggest you to check if any - late binding object in project are handled properly? Or any form object not closed before user try to close application!

-------------
 I dynamically create a few controls while the program is running, are they removed from memory when the form is unloaded?   - Yes
I also define some variables as public in a module.  Are the module's variables removed from memory when the final form is unloaded?  - Yes
ASKER CERTIFIED SOLUTION
Avatar of peetm
peetm
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of SteveQ2

ASKER

I would love to know what is really causing the leftover process after the program finishes; but your suggestion seems to be a good quick fix.  Thank you.