B ben_alls Joined Feb 17, 2008 Messages 1 Reaction score 0 Feb 17, 2008 #1 I'm trying, without much success, to find a specific node in Treeview VB.net 2003 by the text and then programmatically select that node. Please note the VB.NET 2003 - I received help that only worked in 2007. Thanx. Ben, Rookie
I'm trying, without much success, to find a specific node in Treeview VB.net 2003 by the text and then programmatically select that node. Please note the VB.NET 2003 - I received help that only worked in 2007. Thanx. Ben, Rookie
J johnnytli Joined Jun 18, 2008 Messages 1 Reaction score 0 Jun 18, 2008 #2 Giveing a treeview with 1 level - selecting the 2nd node TreeView1.SelectedNode = TreeView1.Nodes(1) Giveing a treeview with two levels - selecting the 1st node of 1st node TreeView1.SelectedNode = TreeView1.Nodes(0).Nodes(0)
Giveing a treeview with 1 level - selecting the 2nd node TreeView1.SelectedNode = TreeView1.Nodes(1) Giveing a treeview with two levels - selecting the 1st node of 1st node TreeView1.SelectedNode = TreeView1.Nodes(0).Nodes(0)