can anyone tell me how to kill a running application? I'm using MSVC++. Thanks
Printable View
can anyone tell me how to kill a running application? I'm using MSVC++. Thanks
Use FindWindow() to get the HWND for the window you want to close. Then use SendMessage() to send a WM_CLOSE message to that windows message queue.