select a node of treeview

  • Thread starter Thread starter Manesh
  • Start date Start date
M

Manesh

hello

Any one know hopw to select a particular node of
treeview using program(vb.net)

thank you
 
Hello,

It is done like this:

myTree.SelectedNode = myTree.Nodes(2)
 
Back
Top