|
Problem With ActiveX SSTree in selecting the nodes
Hi,
I am not sure whether this is the right forum to post this query,
I have tried to get a solution in lot of other forums, but was unable to find one. So I am posting it here too. Just hoping that for my luck if anyone could help me out here.
The problem is as follows:
There is an ActiveX SSTree which can be expanded. The tree structure
is as
follows:
+Modue1
+Module2
- Module2A
+ Module3
Based on the value of the Text, I need to select that node. how can I
do this? Also I would like to know how can I expand the + symbol
without specifying the position
I am able to retrieve the text value from particular node using the
following method, but I am not able to either select or expand that
node
Object.GetVisibleNode(rownum)
Also I tried the following which gives me the number of items present
in that Tree structure and text in that particular position
Msgbox object.Nodes.Count
Msgbox object.Nodes.item(1)
|