Hi all,
I can't figure out how to select a child node when I already know its parent [Index] and the child's [Index] itself. Imagine a treeview like this:
+ Parent[0]
|--- Child [0]
|--- Child [1]
+ Parent[1]
|--- Child [0]
|--- Child [1]
|--- Child [2]
So how can I wrote a code to select (or find) the Child with index 1 from parent with index 1?
Thanks