![]() |
Close Exe File Using Visual C++
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 |
Re: Close Exe File Using Visual C++
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.
|
Re: Close Exe File Using Visual C++
Quote:
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 |
Re: Close Exe File Using Visual C++
Code:
HWND hWnd = ::FindWindow(NULL,"abc.exe"); |
Re: Close Exe File Using Visual C++
Tahnk You Very Much For ur Reply
masanka |
| All times are GMT +5.5. The time now is 02:01. |