让程序只运行一个实例的简单实用的方法

类别:VC语言 点击:0 评论:0 推荐:

让程序只运行一个实例的简单实用的方法
//首先在InitInstance()函数中创建一个同步对象,如果(GetLastError()返回ERROR_ALREADY_EXISTS就

表明存在
//一个应用实例了,返回false取消
// 创建同步对象

//By cryfish
 hMutexOneInstantance=CreateMutex(NULL,TRUE,_T("PreventSecondInstance"));
 if(GetLastError()==ERROR_ALREADY_EXISTS)
  bFound=TRUE;
 if(hMutexOneInstantance)
  ReleaseMutex(hMutexOneInstantance);
 if (bFound==TRUE)
 { ::AfxMessageBox("You have Run one");
 return false;
 }

本文地址:http://com.8s8s.com/it/it769.htm