building treeview
- by DJPlayer
I'm dynamically building a treeview given numerous stored procedures.
the structure goes like this:
OwnerRPColl.Search2()
For Each root As OWNER_RP In OwnerRPColl
Dim nd_Root As New TreeNode
nd_Root = TreeView1.Nodes.Add(root.OWNER_RP_BUSNS_NAME)
bldg.ID = root.ID
bldgColl.Search(bldg.ID)
For…