중복 실행 방지 방법

Posted by 빵빵빵
2009/04/30 11:45 전산(컴퓨터)/Mobile-CE&PPC



출처 : http://www.wolfzone.co.kr/bbs/view.php?id=ncu_develop&page=4&sn1=&divpage=1&sn=off&ss=on&sc=on&select_arrange=headnum&desc=asc&no=3

Application에서 초기 실행되는 InitInstance() 함수에서 이미 실행중인지 체크해서 실행중이면 실행중인 프로그램에게 제어권을 넘겨주고, 실행중이 아닌경우에만 실행되도록 하는 부분이 되겠습니다.

  1. #define PROGRAM_TITLE "Wolf NCU Ver 2.0"  
  2.   
  3. BOOL CRunnerApp::InitInstance()  
  4. {  
  5.         // Standard initialization  
  6.         // If you are not using these features and wish to reduce the size  
  7.         //  of your final executable, you should remove from the following  
  8.         //  the specific initialization routines you do not need.  
  9.   
  10.         CRunnerDlg dlg;  
  11. /* 원래 사용하던것 
  12.         HWND hWnd = FindWindow(NULL, _T(PROGRAM_TITLE)); 
  13.         if(hWnd != NULL) 
  14.         { 
  15.                 SetForegroundWindow(hWnd); 
  16.                 return TRUE; 
  17.         } 
  18. */  
  19.         CWnd *pWndPrev, *pWndChild;  
  20.   
  21.         // 이번에 새로 붙인곳..  
  22.         // Determine if a window with the programe title exists...  
  23.         if (pWndPrev = CWnd::FindWindow(NULL, _T(PROGRAM_TITLE)))  
  24.         {  
  25.                 // If so, does it have any popups?  
  26.                 pWndChild = pWndPrev->GetLastActivePopup();  
  27.   
  28.                 // If iconic, restore the main window.  
  29.                 if (pWndPrev->IsIconic())  
  30.                 pWndPrev->ShowWindow(SW_RESTORE);  
  31.   
  32.                 // Bring the main window or its popup to the foreground  
  33.                 pWndChild->SetForegroundWindow();  
  34.   
  35.                 // and you are done activating the other application.  
  36.                 return TRUE;  
  37.         }  
  38.   
  39.         m_pMainWnd = &dlg;  
  40.   
  41.         int nResponse = dlg.DoModal();  
  42.         if (nResponse == IDOK)  
  43.         {  
  44.                 // TODO: Place code here to handle when the dialog is  
  45.                 //  dismissed with OK  
  46.         }  
  47.         else if (nResponse == IDCANCEL)  
  48.         {  
  49.                 // TODO: Place code here to handle when the dialog is  
  50.                 //  dismissed with Cancel  
  51.         }  
  52.   
  53.         // Since the dialog has been closed, return FALSE so that we exit the  
  54.         //  application, rather than start the application's message pump.  
  55.         return FALSE;  
  56. }  

2009/04/30 11:45 2009/04/30 11:45

이 글에는 트랙백을 보낼 수 없습니다