Introduction
Sometimes you'd want to limit your application to a single instance. In Win32
we had the CreateMutex API function using which we could create a named
mutex and if the call failed, we assume that the application is already running.
Well the .NET SDK gives us the Mutex class for
inter-thread/inter-process synchronization. Anyway in this article we are more interested in using the
Mutex class to limit our apps to a single instance rather than in its use
as an inter-process data synchronization object.
The Class
The code below is nothing new. It's simply a .NET version of a universal
technique that has been used pretty much successfully over the years. For a
thorough understanding of this technique and other techniques and issues
involved when making single instance applications, you must read Joseph M
Newcomer's article -
Avoiding Multiple Instances of an Application
__gc class CSingleInstance
{
private:
Mutex *m_mutex;
public:
CSingleInstance(String *mutexname)
{
m_mutex=new Mutex(false,mutexname);
}
~CSingleInstance()
{
m_mutex->ReleaseMutex ();
}
bool IsRunning()
{
return !m_mutex->WaitOne(10,true);
}
};
Using it in your program
int __stdcall WinMain()
{
CSingleInstance *si=
new CSingleInstance("{94374E65-7166-4fde-ABBD-4E943E70E8E8}");
if(si->IsRunning())
MessageBox::Show("Already running...so exiting!");
else
Application::Run(new MainForm());
return 0;
}
Remember to put the following line on top of your program.
using namespace System::Threading;
I have used the string {94374E65-7166-4fde-ABBD-4E943E70E8E8}as my unique mutex name. You can use
a name that you believe will be unique to your application. Using a GUID would
be the smartest option obviously. You can put the
class in a DLL and thus you can use it from all your applications.
Nish is a real nice guy who has been writing code since 1990 when he first got his hands on an 8088 with 640 KB RAM. Originally from sunny Trivandrum in India, he has been living in various places over the past few years and often thinks it’s time he settled down somewhere.
Nish has been a Microsoft Visual C++ MVP since October, 2002 - awfully nice of Microsoft, he thinks. He maintains an MVP tips and tricks web site -
www.voidnish.com where you can find a consolidated list of his articles, writings and ideas on VC++, MFC, .NET and C++/CLI. Oh, and you might want to check out his blog on C++/CLI, MFC, .NET and a lot of other stuff -
blog.voidnish.com.
Nish loves reading Science Fiction, P G Wodehouse and Agatha Christie, and also fancies himself to be a decent writer of sorts. He has authored a romantic comedy
Summer Love and Some more Cricket as well as a programming book –
Extending MFC applications with the .NET Framework.
Nish's latest book
C++/CLI in Action published by Manning Publications is now available for purchase. You can read more about the book on his blog.
Despite his wife's attempts to get him into cooking, his best effort so far has been a badly done omelette. Some day, he hopes to be a good cook, and to cook a tasty dinner for his wife.