Sunday, October 5, 2008

Limit applications to one instance in Visual C++

Sometimes you need to limit your application to a single instance. The most common way is creating a named mutex using CreateMutex, and checking to see if that mutex already existed or not. If that mutex already exists, it means that another instance application reside in your computer memory so you can kill your current instance.
Click here for this article

No comments: