Click here to Skip to main content
15,881,424 members
Articles / Programming Languages / C#
Article

Detect if another process is running and bring it to the foreground

Rate me:
Please Sign up or sign in to vote.
4.54/5 (34 votes)
30 Sep 2002 306.3K   2   113   39
Sometimes, you only want one instance of your application running. This is a C# implementation that tests to see if an instance of your application is already running, and brings it to the foreground if it is.

Introduction

The following code demonstrates how to detect if there is an instance of your application already running. If detected, it will bring that application to the foreground (restoring its window state if iconic), and then terminating the current application. This is useful in instances where you want to ensure that only one instance of your application is running.

This code was put together using the prior work of Taylor Wood ("Window Hiding in C#") and a message in the C# forum posted by David Wengier illustrating the use of the Process class. Without their help, this would have taken me several hours to put together, instead of a few minutes!

The Code

C#
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
class AppMain
{
    [DllImport("user32.dll")] private static extern 
        bool SetForegroundWindow(IntPtr hWnd);
    [DllImport("user32.dll")] private static extern 
        bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
    [DllImport("user32.dll")] private static extern 
        bool IsIconic(IntPtr hWnd);

    private const int SW_HIDE = 0;
    private const int SW_SHOWNORMAL = 1;
    private const int SW_SHOWMINIMIZED = 2;
    private const int SW_SHOWMAXIMIZED = 3;
    private const int SW_SHOWNOACTIVATE = 4;
    private const int SW_RESTORE = 9;
    private const int SW_SHOWDEFAULT = 10;

    static void Main()
    {
        // get the name of our process
        string proc=Process.GetCurrentProcess().ProcessName;
        // get the list of all processes by that name
        Process[] processes=Process.GetProcessesByName(proc);
        // if there is more than one process...
        if (processes.Length > 1)
        {
            // Assume there is our process, which we will terminate, 
            // and the other process, which we want to bring to the 
            // foreground. This assumes there are only two processes 
            // in the processes array, and we need to find out which 
            // one is NOT us.

            // get our process
            Process p=Process.GetCurrentProcess();
            int n=0;        // assume the other process is at index 0
            // if this process id is OUR process ID...
            if (processes[0].Id==p.Id)
            {
                // then the other process is at index 1
                n=1;
            }
            // get the window handle
            IntPtr hWnd=processes[n].MainWindowHandle;
            // if iconic, we need to restore the window
            if (IsIconic(hWnd))
            {
                ShowWindowAsync(hWnd, SW_RESTORE);
            }
            // bring it to the foreground
            SetForegroundWindow(hWnd);
            // exit our process
            return;
        }
        // ... continue with your application initialization here.
    }
}

Conclusion

This code is a great example of interfacing with Win32 libraries and using some esoteric functions in .NET.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect Interacx
United States United States
Blog: https://marcclifton.wordpress.com/
Home Page: http://www.marcclifton.com
Research: http://www.higherorderprogramming.com/
GitHub: https://github.com/cliftonm

All my life I have been passionate about architecture / software design, as this is the cornerstone to a maintainable and extensible application. As such, I have enjoyed exploring some crazy ideas and discovering that they are not so crazy after all. I also love writing about my ideas and seeing the community response. As a consultant, I've enjoyed working in a wide range of industries such as aerospace, boatyard management, remote sensing, emergency services / data management, and casino operations. I've done a variety of pro-bono work non-profit organizations related to nature conservancy, drug recovery and women's health.

Comments and Discussions

 
Suggestionworkaround for when process cannot bring other window to foreground Pin
theory200619-Jul-12 0:16
theory200619-Jul-12 0:16 
GeneralMy vote of 4 Pin
theory200619-Jul-12 0:13
theory200619-Jul-12 0:13 
QuestionUse this article In Windows CE 5.0 Pin
Tyler4510-Jan-07 8:47
Tyler4510-Jan-07 8:47 
QuestionHow to get it work with Compact Framework ? Pin
Mikael Braad Nielsen26-Jan-06 1:28
Mikael Braad Nielsen26-Jan-06 1:28 
AnswerRe: How to get it work with Compact Framework ? Pin
Gizz14-Nov-06 23:59
Gizz14-Nov-06 23:59 
AnswerRe: How to get it work with Compact Framework ? Pin
siSidon23-Apr-07 5:10
siSidon23-Apr-07 5:10 
QuestionWhat about notification area?? Pin
Raananan28-Nov-05 8:24
Raananan28-Nov-05 8:24 
AnswerRe: What about notification area?? Pin
kubben13-Dec-05 3:05
kubben13-Dec-05 3:05 
QuestionNice, but Pin
Chazsoft7-Oct-05 3:18
Chazsoft7-Oct-05 3:18 
QuestionWhat if? Pin
Super Lloyd27-Jun-05 1:19
Super Lloyd27-Jun-05 1:19 
QuestionApp name changed? Pin
TNTVN6-Dec-04 19:18
TNTVN6-Dec-04 19:18 
GeneralGreat article, almost everything I need Pin
snappa1-Mar-04 11:58
snappa1-Mar-04 11:58 
QuestionIs there a 100% NET way to do this? Pin
m.chung14-Feb-04 3:01
m.chung14-Feb-04 3:01 
AnswerRe: Is there a 100% NET way to do this? Pin
Marc Clifton15-Feb-04 4:39
mvaMarc Clifton15-Feb-04 4:39 
GeneralRe: Is there a 100% NET way to do this? Pin
ykpui31-Aug-15 18:31
ykpui31-Aug-15 18:31 
GeneralRe: Is there a 100% NET way to do this? Pin
ykpui31-Aug-15 18:31
ykpui31-Aug-15 18:31 
AnswerRe: Is there a 100% NET way to do this? Pin
ykpui31-Aug-15 17:27
ykpui31-Aug-15 17:27 
GeneralAnother approach: using mutexes Pin
Guido_d20-Jan-04 2:58
Guido_d20-Jan-04 2:58 
GeneralRe: Another approach: using mutexes Pin
Marc Clifton20-Jan-04 3:07
mvaMarc Clifton20-Jan-04 3:07 
GeneralHiding problem Pin
Neoshid21-Oct-03 0:02
Neoshid21-Oct-03 0:02 
GeneralRe: Hiding problem Pin
C# newuser23-Apr-05 12:59
sussC# newuser23-Apr-05 12:59 
GeneralMore than 15 characters ProcessName Pin
Z42Cool16-Jul-03 23:19
Z42Cool16-Jul-03 23:19 
GeneralRe: More than 15 characters ProcessName Pin
KrapKatcher20-Aug-03 9:12
KrapKatcher20-Aug-03 9:12 
GeneralCool Pin
Kant6-Apr-03 16:17
Kant6-Apr-03 16:17 
GeneralRestore the application from notify icon (system tray) Pin
quic#17-Oct-02 2:19
quic#17-Oct-02 2:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.