U can add tada to treeview by Nodes.Add property of tree view.
for example:
add a treeview to form and use following code to populate data.
Dim nodt As Node
TreeView1.LineStyle = tvwRootLines
Set nodt = TreeView1.Nodes.Add(, , "nod1", "ABC"
Set nodt = TreeView1.Nodes.Add("nod1", 4, "ABC1", "ABC1"
Set nodt = TreeView1.Nodes.Add("nod1", 4, "ABC2", "ABC2"
for detail see help on Nodes property of tree view.
Anil.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.