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 ran Spy++ and left my dialog box up for 1 hour and the message was never received.
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 ran Spy++ and left my dialog box up for 1 hour and the message was never received.