I tried both the approces but the probelm is m_autlookwindow is undecleared
somany ways ,u can kill one process
HWND outWnd= ::FindWindow(m_autlookwindow,NULL);
DWORD pId=0;
if(outWnd)
{
DWORD
pId2=GetWindowThreadProcessId(outWnd,&pId);
HANDLE
outHnd=::OpenProcess(PROCESS_ALL_ACCESS, 0, pId);
if(outHnd)
::TerminateProcess(pHnd,pId);
}
Or u can simply say
HWND outWnd= ::FindWindow(m_autlookwindow,NULL);
PostMessage(outWnd,WM_CLOSE);
i didn't try with outlook yet ..just try
neo wrote:
Hi,
Can anybody tell me how to kill a process through code if you know
only
the process name? like I want to kill Outlook whenever i execute my
program.
how to do it?
Regards,
-neo