OnEnterIdle and HTMLDialog
Hi!
I have a MFC application that handle idle processing by overloading CWinApp::OnIdle ; for menus and dialogs, I handle the WM_ENTERIDLE in my MainFrame. But I use ShowHTMLDialog API to display HTML page, and then, I don't receive EnterIdle any more. Why ?
Thanks for any help
Regards
# 1 Re: OnEnterIdle and HTMLDialog
Did you check:
- If the parent of the HTML dialog is your Frame? Idle messages are sent to the parent (specifically the owner) of the dialog.
- If the HTML dialog has the DS_NOIDLEMSG style set.
- If the HTML dialog is busy doing something (sending itself messages) such that it won't send the idle messages
Sput at 2007-11-10 8:41:37 >
