Click here to Skip to main content
6,630,901 members and growing! (19,633 online)
Email Password   helpLost your password?
Languages » C++ / CLI » General     Intermediate

Limiting your .NET apps to a single instance

By Nishant Sivakumar

Shows how to use the Mutex class to limit your app to a single instance using a named mutex
C++/CLI, Windows, .NET 1.0, Visual Studio, Dev
Posted:3 Nov 2001
Views:157,721
Bookmarked:16 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
52 votes for this article.
Popularity: 7.02 Rating: 4.09 out of 5
1 vote, 10.0%
1

2
1 vote, 10.0%
3

4
8 votes, 80.0%
5

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:
    //our Mutex member variable

    Mutex *m_mutex;	
public:
    CSingleInstance(String *mutexname)
    {
        m_mutex=new Mutex(false,mutexname);
    }
    ~CSingleInstance()
    {
        //we must release it when the CSingleInstance object is destroyed

        m_mutex->ReleaseMutex ();
    }
    bool IsRunning()
    {
        //you can replace 10 with 1 if you want to save 9 ms

        return !m_mutex->WaitOne(10,true);           
    }
};

Using it in your program

int __stdcall WinMain()
{
    //create a mutex with a unique name   

    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.

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

About the Author

Nishant Sivakumar


Member
Nish is a real nice guy living in Atlanta, who has been coding since 1990, when he was 13 years old. Originally from sunny Trivandrum in India, he recently moved to Atlanta from Toronto and is a little sad that he won't be able to play in snow anymore.

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.
Location: United States United States

Other popular C++ / CLI articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 29 (Total in Forum: 29) (Refresh)FirstPrevNext
Generaldoesn't work in a release build PinsussAnonymous13:31 28 Jun '04  
GeneralRe: doesn't work in a release build PinsupporterKluch14:25 27 Oct '04  
AnswerRe: doesn't work in a release build Pinmemberricecake11:50 12 Mar '07  
GeneralQuestion on how to add bring to foreground Pinmembersmesser9:14 29 Feb '04  
GeneralException in ReleaseMutex() in destructor PinsussSerge T8:16 11 Mar '03  
GeneralRe: Simplest Way To Make Single Instance Application PinmemberNish [BusterBoy]0:38 14 May '02  
GeneralRe: Simplest Way To Make Single Instance Application PinmemberAnonymous1:13 14 May '02  
GeneralRe: Simplest Way To Make Single Instance Application PinmemberA.R Gupta1:14 14 May '02  
GeneralA better way PinmemberAndy Smith12:06 4 Mar '02  
GeneralRe: A better way PinmemberRamu Pulipati6:08 26 Jun '02  
GeneralRe: A better way PinmemberJay Giganti4:47 27 Sep '05  
Generalmutex name PinmemberKannan Kalyanaraman0:02 10 Nov '01  
GeneralRe: mutex name PinmemberNish [BusterBoy]0:05 10 Nov '01  
GeneralNothing new, see details MS Knowledge base Q243953 PinmemberMN16:46 4 Nov '01  
GeneralRe: Nothing new, see details MS Knowledge base Q243953 PinmemberNish [BusterBoy]17:09 4 Nov '01  
GeneralRe: Nothing new, see details MS Knowledge base Q243953 PinmemberDenaliChief5:33 26 Dec '01  
GeneralRe: Nothing new, see details MS Knowledge base Q243953 PinmemberNish [BusterBoy]17:04 26 Dec '01  
GeneralRe: Nothing new, see details MS Knowledge base Q243953 PinmemberTom Archer18:30 26 Feb '02  
GeneralRe: Nothing new, see details MS Knowledge base Q243953 PinsussAnonymous19:38 7 Oct '02  
GeneralWell Done PinmemberColin Davies23:45 3 Nov '01  
GeneralRe: Well Done PinmemberNish [BusterBoy]23:49 3 Nov '01  
GeneralRe: Well Done PinmemberZac Howland6:41 4 Jun '02  
GeneralRe: Well Done PinmemberNish - Native CPian7:03 4 Jun '02  
GeneralRe: Well Done PinmemberZac Howland7:15 4 Jun '02  
GeneralRe: Well Done PinmemberNish - Native CPian7:43 4 Jun '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 3 Nov 2001
Editor: Nishant Sivakumar
Copyright 2001 by Nishant Sivakumar
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project