tree view list performance issue

  • Thread starter Thread starter iccsi
  • Start date Start date
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,
 
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.
 
Back
Top