Re: Large treeview scrolling by Mark
Mark
Fri Nov 11 09:49:57 CST 2005
Treeview only shows a maximum number of items, can't remember the number
when I did a test but it was around 80k or so.
I can highly recommend Virtual Tree from www.infralution.com
You can use the virtual mode and only have the nodes that are visible be in
memory, it's very fast.
Mark
"Arne" <Arne@discussions.microsoft.com> wrote in message
news:D8EF4DCA-7E96-424B-81C4-1A2F46CA9F57@microsoft.com...
>I have a large treeview with more than 100,000 items. When i
>programmatically
> select a node it will not always be visible
> node = jumplist(0)
> CatalogTree.SelectedNode = node
> node.EnsureVisible() ' Doesn't do anything useful. Node might scrolled
> away
>
> I would like to programmatically scroll the selected item to the top of
> the
> viewable area.