I am relearning Visual Basic and am doing an execise that requires me to add a child node to a TreeView object from the node currently selected. I have determined the selected node, and, by looping back through the node levels, have built up the required Add string. FYI, it is as follows:
“TreeView1.Nodes(0).Nodes(1).Nodes.Add(New TreeNode(“New Node Name”)”
Now that I have that command in a string variable, how to I execute it?
Thank you for your time,
John Littell