Need some simple Infragistics help

Joined
Sep 25, 2008
Messages
1
Reaction score
0
Hey all im currently upgrading my project to use infragistics controls but im having some trouble with the following

Code:
 TreeNode[] found = InventoryBox.Nodes.Find(folderID.ToString(), true);
 if (found.Length > 0)
 {
 	  node = found[0];
 	  children = node.Nodes;
 }

thats my current one but when i try convert it to use UltraTreeNode or anything there is no Find() method if anyone knows what im missing please let me know :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top