Do I need to use any unload or closing statements with forms in my application.
With one particular form ("Archive"), when closing the form and exiting the application, my project seems to run on.
Nothing is visible on screen but checking Task manager, the application is still running.
With my Sub Main, I am checking if the application is running and loading the previous app if it is.
But the program won't load the prev app because it's not in the task bar ?
I have been using FileSystemObject (fso) and have set fso to nothing after each session.
Dim fso As New FileSystemObject
.........................
Set fso = Nothing.
Have I missed something.



