vote up 1 vote down star
1

For example if the user is currently running VS2008 then I want the value VS2008.

flag

The process for VS 2008 is devenv.exe. Where do you think can you get "VS2008" from? – JRoppert Sep 18 '08 at 21:44

2 Answers

vote up 5 vote down check

I am assuming you want to get the name of the process owning the currently focused window. With some P/Invoke:

    // The GetForegroundWindow function returns a handle to the foreground window
    // (the window  with which the user is currently working).
    [System.Runtime.InteropServices.DllImport("user32.dll")]
    private static extern IntPtr GetForegroundWindow();

    // The GetWindowThreadProcessId function retrieves the identifier of the thread
    // that created the specified window and, optionally, the identifier of the
    // process that created the window.
    [System.Runtime.InteropServices.DllImport("user32.dll")]
    private static extern Int32 GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);

    // Returns the name of the process owning the foreground window.
    private string GetForegroundProcessName()
    {
        IntPtr hwnd = GetForegroundWindow();

        // The foreground window can be NULL in certain circumstances, 
        // such as when a window is losing activation.
        if (hwnd == null)
            return "Unknown";

        uint pid;
        GetWindowThreadProcessId(hwnd, out pid);

        foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses())
        {
            if (p.Id == pid)
                return p.ProcessName;
        }

        return "Unknown";
    }
link|flag
vote up 0 vote down

Small optimization:

Process p =
Process.GetProcessById((int)pid);

And thanks for the answer :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.