nmretd
Dec 12th, 1999, 05:44 PM
I am using an Access Table to populate the nodes on my TreeView control. i.e:
For indx = Asc("A") To Asc("Z")
currentAlpha = Chr(indx)
Set MyNode = TreeView1.Nodes.Add _
(, , currentAlpha, currentAlpha)
This works fine but some of the nodes are empty, i.e they are not expandable.
How can I make these nodes invisible to the user ?
For indx = Asc("A") To Asc("Z")
currentAlpha = Chr(indx)
Set MyNode = TreeView1.Nodes.Add _
(, , currentAlpha, currentAlpha)
This works fine but some of the nodes are empty, i.e they are not expandable.
How can I make these nodes invisible to the user ?