Has anyone gotten the WM_KICKIDLE working with dialogs.
In my header
#include <afxpriv.h>
afx_msg LRESULT OnKickIdle();
in cpp
ON_MESSAGE(WM_KICKIDLE, OnKickIdle)
LResult MyClass::OnKickIdle()
{
AfxMessageBox("made it");
return TRUE;
}
The message box never pops up. I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.