How to close a project (?)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have seen several times when I close a vb application, even though it seems
to be closed when I go to the task manager the process of that EXE is still
running. How do I make sure that my app will close completely.

Thanks,
 
You have to find out what resource is being held that is not letting the app
completely exit.

Are you leaving a thread running?

Do you have aform hidden that is not closing before you exit?
 
Eduardo78 said:
I have seen several times when I close a vb application, even though it
seems
to be closed when I go to the task manager the process of that EXE is
still
running. How do I make sure that my app will close completely.

If you are using additional threads, set their 'IsBackground' property to
'True'. Otherwise you will have to terminate the threads explicitly.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top