I use this code to add Item on the TreeView.
Dim nod As TreeNode = TreeView1.Nodes.Add("Customers")
Dim child As TreeNode = nod.Nodes.Add("Bluei2")
I have a ImageList1 and it has two image.
Everytime set the TreeView1 imagelist to ImageList1, Thel image of all nodes together with the child nodes of my Treeview is the one I selected.
What code should I write or what should I do to make the image of nodes is differ from the child nodes?
