Close Exe File Using Visual C++

Light Poster
16Jan2008,11:40   #1
masanka's Avatar
Hi All
Please tell me how to close an EXE Using visual C++.This EXE is an separate EXE file

EX.
ABC.exe and XYZ.EXE
I am Runing XYZ.exe Using ABC.EXE (In ABC.EXE Shell command) I want close this XYZ.EXE
using ABC.EXE in VC++

Please help me

Thanks
masanka
Go4Expert Founder
16Jan2008,17:23   #2
shabbir's Avatar
Use the FindWindow to get the handle to the EXE running and send the WM_CLOSE / WM_QUIT message and it should close the running exe.
Light Poster
16Jan2008,17:52   #3
masanka's Avatar
Quote:
Originally Posted by shabbir
Use the FindWindow to get the handle to the EXE running and send the WM_CLOSE / WM_QUIT message and it should close the running exe.

Hi
Please Tell me how can do this I am beginer for the VC++ and i want close Word document file In Same time (abc.doc) Simply word exe file

Thanks
masanka
Go4Expert Founder
16Jan2008,19:14   #4
shabbir's Avatar
Code:
HWND hWnd = ::FindWindow(NULL,"abc.exe");
::SendMessage(hWnd,WM_CLOSE,0,0);
Here is the sample pseudo
Light Poster
17Jan2008,08:40   #5
masanka's Avatar
Tahnk You Very Much For ur Reply

masanka