1. App클래스에 멤버변수 추가
HANDLE m_hDpMutex;
2. InitInstance()에 다음 코드 추가
m_hDpMutex = CreateMutex(NULL, FALSE, "프로젝트명");
if(ERROR_ALREADY_EXISTS == GetLastError()) return FALSE;
'MFC' 카테고리의 다른 글
System Error Code (GetLastError Code) (0) | 2015.07.09 |
---|---|
[MFC] ShellExecute function (0) | 2015.05.18 |
[MFC] 다양한 문자열 형식간 변환 (0) | 2014.07.29 |
[MFC] _RecordsetPtr RecordCount returns -1 (0) | 2014.07.29 |
[MFC] CListctrl, CTreectrl Drag And Drop 오류 (No Text Error) (0) | 2014.06.13 |