Possible to kill MessageBox?
-
Hello guys, I am wondering if there is a way to get a handler and so to kill the messageboxes created by
::MessageBox()
orAfxMessageBox()
from other thread? Or I have no choice but to manually make a class to produce the very same dialogue and kill it by destroy the class. Thanks alot -
Hello guys, I am wondering if there is a way to get a handler and so to kill the messageboxes created by
::MessageBox()
orAfxMessageBox()
from other thread? Or I have no choice but to manually make a class to produce the very same dialogue and kill it by destroy the class. Thanks alot -
Hello guys, I am wondering if there is a way to get a handler and so to kill the messageboxes created by
::MessageBox()
orAfxMessageBox()
from other thread? Or I have no choice but to manually make a class to produce the very same dialogue and kill it by destroy the class. Thanks alot -
Hello guys, I am wondering if there is a way to get a handler and so to kill the messageboxes created by
::MessageBox()
orAfxMessageBox()
from other thread? Or I have no choice but to manually make a class to produce the very same dialogue and kill it by destroy the class. Thanks alotYou may use
FindWindow
to retrieve the message box's handle which then you can destroy withDestroyWindow
. Regards, Alvaro
Give a man a fish, he owes you one fish. Teach a man to fish, you give up your monopoly on fisheries.