Re: help , domodal() assert error MFC
Hi Neel,
Could be something wrong in your dialog code. Could you post the start up
code for CDeleteJed? Is it just a small dialog.
Also, check to make sure you didn't load a different set of resources from a
resource DLL that perhaps has a different ID number of dialog in the same
place as this one in your original code.
One more thought, and it's just a guess, but are you trying to close the
dialog automatically by pumping a message to it. Maybe the message is
getting processed before the dialog is done opening. That's not likely the
case, but ...
Tom
"Neel" <urneel@gmail.com> wrote in message
news:3a6924b6-7ade-42ec-9019-12bc5e3a11f6@1g2000hsl.googlegroups.com...
Hi freinds,
please help on debug assert error while using domodal().
CDeleteJed d(this);
d.DoModal();
when i debug i found assert as followed
=>
VERIFY(RunModalLoop(dwFlags) == m_nModalResult);
=>
ASSERT(ContinueModal());
// pump message, but quit on WM_QUIT
if (!AfxPumpMessage()) {
AfxPostQuitMessage(0);
return -1;
}
=>
BOOL AFXAPI AfxPumpMessage()
{
CWinThread *pThread = AfxGetThread();
if( pThread )
return pThread->PumpMessage();
else
return AfxInternalPumpMessage();
}
=>
debug assertion failed . please help
Thanks in adv.
Neel