|
|
|
There is an easy, but under-utilized, technique for loading many nodes in a TreeView control (or ListItems in a ListView control) that is faster than the standard technique. Consider this loop: |
Instead of repeatedly query the TreeView1 object for its Nodes collection, you can store it in a temporary object variable: |
You don't even need the temporary variable, if you use a With block: |
On my system, these optimized loops run about 40% faster than the standard code showed above. This faster speed can be explained as follows: by storing the Nodes collection in a temporary variable (or using the hidden temporary variable that VB builds behind the With block), you avoid to bind the Nodes object to its parent TreeView1 object inside the loop. Because this latter binding is based on the inefficient dispid-binding, this step trims a lot of unnecessary overhead inside the loop. The same reasoning applies to other ActiveX controls:
the ListItems, ListSubItems, and ColumnHeaders collections of the ListView control the Buttons and ButtonMenus collection of the Toolbar control the ListImages collection of the ImageList control the Panels collection of the StatusBar control the Tabs collection of the TabStrip control the ComboItems collection of the ImageCombo control the Columns collection of the DataGrid control and more in general, whenever you have an ActiveX control that exposes a collection that you use inside a loop.
|
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|