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 |
|
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 |
|
Quote:
Originally Posted by shabbir 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 |
|
Code:
HWND hWnd = ::FindWindow(NULL,"abc.exe"); ::SendMessage(hWnd,WM_CLOSE,0,0); |
|
Light Poster
|
|
| 17Jan2008,08:40 | #5 |
|
Tahnk You Very Much For ur Reply
masanka |

