In .NET, what's the best way to prevent multiple instances of an app from running at the same time? And if there's no "best" technique, what are some of the caveats to consider with each solution?
|
|
Use Mutex. One of the examples above using GetProcessByName has many caveats. Here is a good article on the subject: http://odetocode.com/Blogs/scott/archive/2004/08/20/401.aspx
|
||||||||
|
|
|
Hanselman has a post on using the WinFormsApplicationBase class from the Microsoft.VisualBasic assembly to do this. |
||
|
|
|
Using Visual Studio 2005 or 2008 when you create a project for an executable, on the properties windows inside the "Application" panel there is a check box named “Make single instance application” that you can activate to convert the application on a single instance application. |
||
|
|
|
|
http://en.csharp-online.net/Application_Architecture_in_Windows_Forms_2.0—Single-Instance_Detection_and_Management |
||
|
|
|
|
This article simply explains how you can create a windows application with control on the number of its instances or run only single instance. This is very typical need of a business application. There are already lots of other possible solutions to control this. http://www.openwinforms.com/single_instance_application.html |
||
|
|
|
|
It sounds like there are 3 fundamental techniques that have been suggested so far.
Any caveats I've missed? |
||||||||
|
|
|
You have to use System.Diagnostics.Process. Check out: http://www.devx.com/tips/Tip/20044 |
||
|
|
|
|
Normally it's done with a named Mutex (use new Mutex( "your app name", true ) and check the return value), but there's also some support classes in Microsoft.VisualBasic.dll that can do it for you. |
||
|
|
|
|
i've used this before http://www.bobpowell.net/singleinstance.htm for using a single instance application and showing the application if a user try to make another instance. |
||
|
|
|
|
Here is the code you need to ensure that only one instance is running. This is the method of using a named mutex.
|
||
|
|
|
|
Use VB.NET! No: really ;) using Microsoft.VisualBasic.ApplicationServices; The WindowsFormsApplicationBase from VB.Net provides you with a "SingleInstace" Property, which determines other Instances and let only one Instance run. |
||
|
|
|
|
Hi,
From: Ensuring a single instance of .NET Application and: Single Instance Application Mutex Same answer as @Smink and @Imjustpondering with a twist: Jon Skeet's FAQ on C# to find out why GC.KeepAlive matters |
||
|
|
|
|
|
|||
|
|
