Is Multiple Inheritance possible in MFC?
Thanks in advance,
Printable View
Is Multiple Inheritance possible in MFC?
Thanks in advance,
class CAttributeControlWindow : public CDialog, public CAttributeControl
You need to be careful. Have a look at TechNote 016: "Using C++ Multiple Inheritance with MFC".
This tells you how to work around the restrictions concerning CObject, CRuntimeClass, and MFC message mapping, which all need special handling under MI.
Dave