TreeView Help

  • Thread starter Thread starter Jase
  • Start date Start date
J

Jase

Hi,

Simple question, how do you set up a treeview so that when 1 on the
nodes is selected it sends text associated with that node to a text
box?

Thanks for any help

Jase
 
something like this:


nodetxt = e.Node.Text
If Not e.Node.Parent Is Nothing Then
rootnde = e.Node.Parent '(root node)
roottxt = rootnde.Text '(root node text)
End If

rg,
Eric
 
Back
Top