After I add a Node, whether it is SelectedNode or not, I want to mark that node so I can add children to it.
tvwDemo.SelectedNodes.Nodes.Add("Item To Add")
Once I have done this, how do I get the index or position the node to add a new node to "Item To Add"?
tvwDemo.Nodes("Item To Add").Add("Sub 1")
What is the best way to position adding to the last node in a TreeNode?
Thanks!
Barry
tvwDemo.SelectedNodes.Nodes.Add("Item To Add")
Once I have done this, how do I get the index or position the node to add a new node to "Item To Add"?
tvwDemo.Nodes("Item To Add").Add("Sub 1")
What is the best way to position adding to the last node in a TreeNode?
Thanks!
Barry