how can you select multiple nodes in a tree view control and is it possible to give different colours to the text of the nodes of tree view control
Printable View
how can you select multiple nodes in a tree view control and is it possible to give different colours to the text of the nodes of tree view control
each node has a BackColor and a ForeColor property.
Dim n as Node
set n = t.Nodes.Add(, , , "Test")
n.ForeColor = RGB(255, 0, 0)