vote up 1 vote down star
1

I have a windows application (C#) and i need to configure it to run one instance from the application at the time , It means that one user clicked the .exe file and the application is run and the user didn't close the first instance of the application that is being run and need to run a next instance so it should appear the first instance and not opening new one.

can any one help me how to do that?

thanks in advance

flag

17% accept rate

5 Answers

vote up 4 vote down

I often solve this by checking for other processes with the same name. The advantage/disadvantage with this is that you (or the user) can "step aside" from the check by renaming the exe. If you do not want that you could probably use the Process-object that is returned.

  string procName = Process.GetCurrentProcess().ProcessName;
  if (Process.GetProcessesByName(procName).Length == 1)
  {
      ...code here...
  }

It depends on your need, I think it's handy to bypass the check witout recompiling (it's a server process, which sometimes is run as a service).

link|flag
+1 I would use your approach – Rashmi Pandit May 26 at 4:29
vote up 2 vote down

The VB.Net team has already implemented a solution. You will need to take a dependency on Microsoft.VisualBasic.dll, but if that doesn't bother you, then this is a good solution IMHO. See the end of the following article: Single-Instance Apps

Here's the relevant parts from the article:

1) Add a reference to Microsoft.VisualBasic.dll 2) Add the following class to your project.

public class SingleInstanceApplication : WindowsFormsApplicationBase
{
    private SingleInstanceApplication()
    {
        base.IsSingleInstance = true;
    }

    public static void Run(Form f, StartupNextInstanceEventHandler startupHandler)
    {
        SingleInstanceApplication app = new SingleInstanceApplication();
        app.MainForm = f;
        app.StartupNextInstance += startupHandler;
        app.Run(Environment.GetCommandLineArgs());
    }
}

Open Program.cs and add the following using statement:

using Microsoft.VisualBasic.ApplicationServices;

Change the class to the following:

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        SingleInstanceApplication.Run(new Form1(), StartupNextInstanceEventHandler);
    }

    public static void StartupNextInstanceEventHandler(object sender, StartupNextInstanceEventArgs e)
    {
        MessageBox.Show("New instance");
    }
}
link|flag
This is a simple approach, however it comes with the pitfalls mentioned in the discussion in Scott Hanselman's blog post: hanselman.com/blog/… – divo May 26 at 17:57
Thanks for pointing this out, I wasn't aware of that. I could only see one pitfall in the linked post and that was that this solution won't work when windows is running in safe mode. Many applications have functionality that requires running in normal mode anyhow, and then this might not be much of a drawback. Anyhow, it's good to know that there is an issue. – Kim Major May 26 at 18:33
vote up 1 vote down

Assuming you are using C#

        static Mutex mx;
        const string singleInstance = @"MU.Mutex";
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            try
            {
                System.Threading.Mutex.OpenExisting(singleInstance);
                MessageBox.Show("already exist instance");
                return;
            }
            catch(WaitHandleCannotBeOpenedException)
            {
                mx = new System.Threading.Mutex(true, singleInstance);

            }
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm());
        }
link|flag
this is example of exception handling misuse. and you're not disposing your mutex :] – Yossarian May 25 at 10:05
Terrible usage using a try catch for checking exisitng mutex. – leppie May 25 at 10:21
See stackoverflow.com/questions/229565/… for better Mutex handling. – divo May 25 at 10:21
I dont want to dispose the mutex till the application closes – Ahmed Said May 25 at 10:27
@Ahmed, there are better ways, that does not require exceptions. I agree, the Mutex API is a crap design :) – leppie May 25 at 10:32
show 2 more comments
vote up 0 vote down

Edit : After the question was amended to include c#. My answer works only for vb.net application

select the Make single instance application check box to prevent users from running multiple instances of your application. The default setting for this check box is cleared, allowing multiple instances of the application to be run.

You can do this from Project -> Properties -> Application tab

Source

link|flag
Afaik, this only applies to VB and not to C#. – divo May 25 at 10:17
See my suggestion (in my answer) on how to use the VB solution in C#. It's a little more than checking a check box, but not by much. – Kim Major May 25 at 16:28
vote up 0 vote down

We had exactly the same problem. We tried the process approach, but this fails, if the user has no right to read information about other processes, i.e. non-admins. So we implemented the solution below.

Basically we try to open a file for exclusive reading. If this fails (because anohter instance has already done this), we get an exception and can quit the app.

		bool haveLock = false;
		try
		{
			lockStream = new System.IO.FileStream(pathToTempFile,System.IO.FileMode.Create,System.IO.FileAccess.ReadWrite,System.IO.FileShare.None);
			haveLock = true;
		}
		catch(Exception)
		{
			System.Console.WriteLine("Failed to acquire lock. ");
		}
		if(!haveLock)
		{
			Inka.Controls.Dialoge.InkaInfoBox diag = new Inka.Controls.Dialoge.InkaInfoBox("App has been started already");
			diag.Size = new Size(diag.Size.Width + 40, diag.Size.Height + 20);
			diag.ShowDialog();
			Application.Exit();
		}
link|flag

Your Answer

Get an OpenID
or

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