|
-
Oct 30th, 2003, 07:50 AM
#1
Thread Starter
Addicted Member
running processes
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
-
Oct 30th, 2003, 08:02 AM
#2
Fanatic Member
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:
End stops code abruptly.
-
Oct 30th, 2003, 08:07 AM
#3
Thread Starter
Addicted Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|