Hi

I am using a form with 2 buttons and one treeview
in the first button , I can add a node with this code

dim c as treeNode
c=TreeView1.Nodes.Add("hello")

in the second button i can add a node but only in the last node
c.nodes.add("World")

My question is how to add a node in the third node or a specific node of the treeView

Thank you