Link to home
Start Free TrialLog in
Avatar of facole
facole

asked on

Releasing VB6 Application from NT Task Manager

I have a VB6 application that when I unload it, it doesn't remove the application from the Windows NT Task Manager List.  This same application in was previously in vb4 and this never seemed to occur.  If it is run over and over, the number of instances in the Taks manager multiplies.

Any help would be appreciated.
Avatar of roverm
roverm
Flag of Netherlands image

You are probably using the DataReport Designer ?
If so:
After using the .PrintReport method you must UNLOAD the DataReport yourself, otherwise it will stay in the Task Man after closing the application.
Did have the same problem....
grtx, RoverM
Avatar of facole
facole

ASKER

Per Proposed Answer from roverm.  I am not using the DataReport Designer in my application.  Something else must be causing it.  Thanks for the try though
ASKER CERTIFIED SOLUTION
Avatar of tward
tward

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
Are you using any DAO objects?

If you set references to DAO objects like databases or recordsets, you have to explicitly set these object references to nothing to get rid of them:

Dim rs as DAO.Recordset
Set rs = somekindofrecordset
'     do your
'     recordset work
'     here
Set recordset = nothing 'this detroys the reference.

If you don't, many times they hang and create the situation you are describing.

Wes
Can you give anymore information what you're using in your application?
Avatar of facole

ASKER

tward,

Thank you.  I found a form that I loaded, but didn't necessarily display all of the time.  It was always loaded and on exit it was never closed.

Thanks for your help