To scroll to the end of a TreeView in C# and VB.NET you can use the following snippet.
Sample VB.NET / C#
treeView1.Nodes[treeView1.Nodes.Count - 1].EnsureVisible();
All the Code Snippets and Samples you need
To scroll to the end of a TreeView in C# and VB.NET you can use the following snippet.
treeView1.Nodes[treeView1.Nodes.Count - 1].EnsureVisible();