hi,
I want to create a button that when I click it , it will Expand just node 1 and not child nodes "1.*" under it in the tree. any suggestion how?
Professional Software Development Tools
hi,
I want to create a button that when I click it , it will Expand just node 1 and not child nodes "1.*" under it in the tree. any suggestion how?
I saw at least one example of an explorer type tree in the forums a ways back.. I believe it was in the AutoPlay Media Studio v.6.0 examples
I tried to search for it quick but didn't see it - I know it's there tho. Giver a-look-see![]()
that what I did
ChildCount = Tree.GetChildCount("tree", "1");
-- Check for number of elements
if ChildCount > 0 then
min = 1; -- The number to start at
for count = min, ChildCount do
Tree.CollapseNode("tree", "1."..count);
end
end
thank you any way