I am having difficulty sorting Treeview nodes, then inserting a specific node at position 0.
For x
'Add nodes from database here
Next
tvwMain.Sort()
tvwMain.Nodes.Insert(0, "MainStepNode", "STEPS")
After running the code above, my MainStepNode "STEPS" gets sorted into the tree, when I specifically want this one node to be at position 0. Is there anyway in VB.NET to sort the nodes that you have, stop sorting, then add certain nodes at certain spots?