Click to See Complete Forum and Search --> : Treeview


Girish G
July 19th, 1999, 02:02 AM
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

Lothar Haensler
July 19th, 1999, 02:24 AM
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)