how can i see all running process on my application??
When i execute Application.exit, something remains running, and the application don't stop at all, some rebel stuff don't want to stop!!
Thank you,
Guilherme Costa
Printable View
how can i see all running process on my application??
When i execute Application.exit, something remains running, and the application don't stop at all, some rebel stuff don't want to stop!!
Thank you,
Guilherme Costa
Application.Exit()- This method stops threads and closes all windows of the application. It does not force the application to exit – in other words, it does not cause Application.Run to return. Instead, by stopping all threads and closing all windows, the application will “die” naturally as there is no more code to execute. Microsoft labels this as the preferred method to exit an application (in most cases).
What if you try:
VB Code:
End
End stops code abruptly.
i just notify that is just some times that application.exit don't stops every thing running, on the last try it stops all right!!
Thanks for your reply!!
Guilherme Costa