Hi,
I needed to iterate through the whole tree of tasks. I started by using the TaskUtils.apply and the ITreeAlgoritym class based upon your sample project ... Very nice structure ... however, I found I was not able to see all of the tasks - about 1/3 were missing. I then did a recursive routine to iterate through the tasks and found the same (or similar) result.
I then changed the loop in the recursive routine from:
For each pobjChild in the Array list
next
To
For pindex = 0 to count -1
next
And I now see all of the tasks in the project in the correct task order. Is there a simple reason why one type of loop skips tasks and the other finds them in the correct order. (I'm new to ArrayLists..).
Regards, Bruce