Results 1 to 3 of 3

Thread: Checking to see if whatever.exe is running.

  1. #1
    amac
    Guest

    Checking to see if whatever.exe is running.

    How can I check to see if an executable is running?

  2. #2
    Megatron
    Guest
    If you know its classname, you could use the FindWindow API.
    Code:
    HWND hWindow = FindWindow("ClassName", "WindowText")
    if( hWindow )
    {
        // Window found
    }

  3. #3
    amac
    Guest
    I know about that way... but is there anyway to see if a specific executable is running...

    What if it didnt have a window?

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