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);
}
Как проверить если ваша программа единственно запущеная в данный момент
Очень простоя код взятый с CodeProject
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment