I need to know how to kill a specific window that is specified in the coding (not just some random thing), how might I go about this (and this aint homework)
This is a discussion on Killing a window within the C++ Programming forums, part of the General Programming Boards category; I need to know how to kill a specific window that is specified in the coding (not just some random ...
I need to know how to kill a specific window that is specified in the coding (not just some random thing), how might I go about this (and this aint homework)
return 0;
Is this windows programming?
send the window a Close Window message.
If it isint a windows program can you be more specific
HWND hOtherWind = FindWindow(NULL, "Exact Window Title");
SendMessage(hOtherWind, WM_CLOSE, NULL, NULL);
Gays can't love like real people
entropysink.com -- because arses weren't designed for running websites.
PostQuitMessage(0);
I think that's what u want
Please direct all complaints regarding this post to the nearest brick wallHave a nice day.
Ken had it, thanks you guys
"The world has seen the state of our union, AND IT IS STRONG"
-- George Bush
what headers would I need to do this?
"The world has seen the state of our union, AND IT IS STRONG"
-- George Bush
<windows.h>