Hi all
Right now I have a treeview with 2 parent nodes and each Parent Node has multiple child nodes.
I would like to display the text of the Child Node in a textbox. Which I have been unsuccessful.
The code I'm displaying below shows both parent and child node. But I only want the child node.
Thank you
Code:
Private Sub TreeView1_NodeMouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeNodeMouseClickEventArgs) Handles TreeView1.NodeMouseClick    
MsgBox(e.Node.Text)
End Sub