Introduction
After spending some time studying the C#, I started to develop some components and applications so i thought before i could jump into articles relating to user controls i could contribute this code snippet that retricts the application from creating multiple instances.
The following code uses the System.Diagnostics namespace to identify the application process name. So you just have to create new windows application project and just replace code in the main function in the form with the code provided below.
static void Main()
Int32 _isProcessRunning;
_isProcessRunning = System.Diagnostics.Process.GetProcessesByName(<BR> System.Diagnostics.Process.GetCurrentProcess().ProcessName).Length;
if(_isProcessRunning != 1)
{
MessageBox.Show("Already an Instance running");
}
else
{
Application.Run(new Form1());
}
Test your application by executing your application exe from the \bin\Debug folder.
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