Hi everyone,
I have a typical Windows32 app that's having an odd litle problem. I created a new dialog box in the resource editor, had ClassWizard implement a new class for it (CSizeDlg) and then tried to call it up in my program:
CSizeDlg aDlg;
aDlg.DoModal();
No big deal, but I'm getting a debug assertion failure when doing this on line 22 of afxwin1.inl. I looked it up and it is failing when attempting this bit of code:
--------------------------------------------------------------------------------
_AFXWIN_INLINE HINSTANCE AFXAPI AfxGetResourceHandle() { ASSERT(afxCurrentResourceHandle != NULL); return afxCurrentResourceHandle; }
--------------------------------------------------------------------------------
Any idea as to why AfxGetResourceHandlle() is returning a NULL handle in my app? I've never had this happen before.
Thanks,
Darris