hey all,
I have a primary treeview(tvPrime); its nodes(84 them) when clicked will open a new treeview(indexed tvAtt(0) thru tvAtt(83)). the tvPrime is visible on load --all the tvAtt's are not visible.
That part I have not a problem.
The problem is if I click on say tvAtt(3) and then need something on tvAtt(34)-- I can not get the tvAtt(3) to reload.
here is the code:
private from_load()
tvprime.visible = true
end sub
private tvprime_nodeclick(ByVal Node as MScontlib.Node)
Select case node.key
case P1: tvAtt(0).visible = true
case P2: etc
etc
end select
end sub
Any ideas?
Is it possible to make the code like something like
tvatt(lastclicked).visible = true-- how would I get that via tvprime_nodeclick function.
The reasoning that I doing this why is then all the information is internal.(I prefer not to have the application depended on data from databases or files.)
Aaron
I have a primary treeview(tvPrime); its nodes(84 them) when clicked will open a new treeview(indexed tvAtt(0) thru tvAtt(83)). the tvPrime is visible on load --all the tvAtt's are not visible.
That part I have not a problem.
The problem is if I click on say tvAtt(3) and then need something on tvAtt(34)-- I can not get the tvAtt(3) to reload.
here is the code:
private from_load()
tvprime.visible = true
end sub
private tvprime_nodeclick(ByVal Node as MScontlib.Node)
Select case node.key
case P1: tvAtt(0).visible = true
case P2: etc
etc
end select
end sub
Any ideas?
Is it possible to make the code like something like
tvatt(lastclicked).visible = true-- how would I get that via tvprime_nodeclick function.
The reasoning that I doing this why is then all the information is internal.(I prefer not to have the application depended on data from databases or files.)
Aaron