CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: CTreeView

  1. #1
    Guest

    CTreeView

    What is the best data structure to access and store externally the contents of a Tree Control, tips and hints source welcome ?


  2. #2
    Join Date
    May 1999
    Posts
    78

    Re: CTreeView

    class CItems : public CObject
    {
    public:
    CTreeCursor m_treeItem; //Ptr to tree Item
    CString m_szName; // name of tree Item
    int m_nImageID; //Image Id - index of the image in Image List Resource
    int m_nLevelNo; //Level in a tree
    int m_nSts;
    //int

    .....and others items appropriate to the prog functionality



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