[MFC] 다른 윈도우 찾기

C++ 2010. 12. 9. 01:17


//계산기 닫기
HWND hWnd = ::FindWindow(NULL, _T("계산기"));
if (hWnd)
::SendMessage(hWnd, WM_CLOSE, 0, 0);