tree view list performance issue

I

iccsi

I have a tree view list on the form and there are 4 levels nodes on
the tree.

There are hundreds records in tghe database and takes a couple
seconds.
For me, it seems slower than other user interface.

I would like to know is it normal slower like this?

Your information is great appreciated,
 
D

Dale Fye

Is this a "treeview" control or a "listview" control?

I've never used "listviews", but treeviews tend to take longer to load
because they are code based, not query based. You have to run through a
bunch of recursive code to load a treeview, as opposed to a listbox or combo
box, which are query based (generally). But these latter two controls are
not very good at displaying heirarchical data, and the treeview is.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

tree view list refresh 9
delete tree view list 1
refresh treeview on a node 1
key in tree view list 2
tree view list 3
insert a node in to tree view 0
tree view list on drag 2
tree view list node event 2

Top