CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Baldric7202

Search: Search took 0.03 seconds.

  1. Re: MFC CTypedPtrList in a CTypedPtrList error

    Paul,

    Thanks for the reply, it confirms the conclusion I came to about an hour after I posted the question. In the end I have ended up with an CTypedPtrArray as the outer list, less efficient for...
  2. MFC CTypedPtrList in a CTypedPtrList error

    I need to store my data in a list of lists as shown in the code

    class CMyData
    {
    public:
    CString m_strStuff;
    };

    typedef CTypedPtrList< CPtrList, CMyData*> CMyDataList;
    typedef...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured