Results 1 to 3 of 3

Thread: running processes

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2003
    Location
    Porto Alegre, RS
    Posts
    210

    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

  2. #2
    Fanatic Member VBCrazyCoder's Avatar
    Join Date
    Apr 2003
    Posts
    681
    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:
    1. End

    End stops code abruptly.

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Jan 2003
    Location
    Porto Alegre, RS
    Posts
    210
    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
  •  



Click Here to Expand Forum to Full Width