I am bootstrapping myself up on using the Treeview control in VB. I have a quick question, after adding a child node using the following :
How can I then make it (the newly added node) the selected node? I know I can use the selectednode property to 'set' it, but how do I reference it?
Rick
Code:
TreeView_Dir_List.SelectedNode.Nodes.Add(OpenFileDialog.SafeFileNames(0)) ' Add the new item
Rick