How to close this thread ?

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

Guest

myApplication.exe file is still running even when i close my application .

i.e. When i try to delete that its saying file in use ....always going to
task Manager is not good ........When i use this method
this.close()
its saying resources cannot be loaded
when can i overcome this .................


Thanking You in Advance
 
The app is running until all foreground threads has stopped. If you
have a running thread, try aborting it, or setting the the thread's
IsBackground property to true.
 
Back
Top