HWND hWnd = ::FindWindow(NULL, _T("exe"));
if (hWnd != NULL){
m_wndExe.Attach(hWnd);
m_wndExe.ShowWindow(FALSE);
m_wndExe.SetParent(this);
m_wndExe.MoveWindow(111,82,802,602);
m_wndExe.ShowWindow(TRUE);
SetTimer(TIMER_CANCLOSE, 100, NULL);
KillTimer(nIDEvent);
}