G
Guest
Hello,
Encountering a issue where I define a mutex to enforce a single instance of
an application. It works well under Debug but switching to release it fails
everytime..
bool exclusive = false;
Mutex m = new Mutex(true, "SOEIFrameworkMutex", out exclusive);
if (exclusive)
{
// run app
}
else
{
// lookup exisitng process and bring to the fore
}
Any ideas on what could cause this are most appreciated
AC
Encountering a issue where I define a mutex to enforce a single instance of
an application. It works well under Debug but switching to release it fails
everytime..
bool exclusive = false;
Mutex m = new Mutex(true, "SOEIFrameworkMutex", out exclusive);
if (exclusive)
{
// run app
}
else
{
// lookup exisitng process and bring to the fore
}
Any ideas on what could cause this are most appreciated
AC