tree view using form view.
-
Hi, I am beginner to VC++. Now I want to develop an application where window divided into two parts. left side i am having tree view and right side display information. I already implemented tree view using SDI application (CTreeView). Now I want to implement a tree in CFormView. How can i write a tree implementation in CForm View. Please suggest me the solution. Also If you have any references related to this please send me. Thanks in advance........
To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison
-
Hi, I am beginner to VC++. Now I want to develop an application where window divided into two parts. left side i am having tree view and right side display information. I already implemented tree view using SDI application (CTreeView). Now I want to implement a tree in CFormView. How can i write a tree implementation in CForm View. Please suggest me the solution. Also If you have any references related to this please send me. Thanks in advance........
To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison
One solution is to use a spliter (CSplitterWnd) to split the view into 2 parts, the left side (for example) will contain the tree, and the right side will contain the "information".
This signature was proudly tested on animals.
-
Hi, I am beginner to VC++. Now I want to develop an application where window divided into two parts. left side i am having tree view and right side display information. I already implemented tree view using SDI application (CTreeView). Now I want to implement a tree in CFormView. How can i write a tree implementation in CForm View. Please suggest me the solution. Also If you have any references related to this please send me. Thanks in advance........
To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison
You can consider a tree control (CTreeCtrl) for form view.