This is a mirror of official site: http://jasper-net.blogspot.com/

Как проверить если ваша программа единственно запущеная в данный момент

| Wednesday, September 15, 2004
Очень простоя код взятый с CodeProject


using System.Threading;

static void Main()
{
bool bAppFirstInstance;
oMutex = new Mutex(true, "Global\\" + “YOUR_APP_NAME”, out bAppFirstInstance);
if(bAppFirstInstance)
Application.Run(new formYOURAPP() or classYOURAPP());
else
MessageBox.Show("
The threatening message you want to go for",
"
Startup warning",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation,
MessageBoxDefaultButton.Button1);
}

0 comments: