CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 1999
    Posts
    1

    Multiple Inheritance



    Is Multiple Inheritance possible in MFC?


    Thanks in advance,



  2. #2
    Join Date
    May 1999
    Posts
    30

    Yah....



    class CAttributeControlWindow : public CDialog, public CAttributeControl



  3. #3
    Join Date
    Apr 1999
    Posts
    383

    Re: Multiple Inheritance



    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured