vote up 1 vote down star

How can I generate treeview nodes programmatically for this collection

node id          parent node id

-------          --------------

100                 null           //this is the root node

101                 100

123                 101

124                 101

126                 101

103                 100

104                 100

109                 100

128                 109

122                 100

127                 122

129                 127

130                 129
flag
What is the real issue? You don't know how to make the nodes programmatically or is there something special with the node ids? – Raminder Jan 4 at 14:01
i dont how,it seems i need to make a Recursive method but i dont know how to apply it,i started by add in collection of nodes but my problem is with the number of these instances! – sara Jan 4 at 14:11

4 Answers

vote up 0 vote down

You could use a dictionary to keep track of nodes. For example:

Dictionary<string, TreeNode> mNodeIndex = new Dictionary<string, TreeNode>();

private void AddNode(string text, string key, string parent) {
  TreeNode node = new TreeNode(text);
  if (String.IsNullOrEmpty(parent)) treeView1.Nodes.Add(node);
  else mNodeIndex[parent].Nodes.Add(node);
  mNodeIndex.Add(key, node);
}

private void Form1_Load(object sender, EventArgs e) {
  AddNode("100", "100", null);
  AddNode("101", "101", "100");
  AddNode("123", "123", "101");
  AddNode("124", "124", "101");
  // Etc...
  //...
  mNodeIndex = null;
}
link|flag
vote up 0 vote down

What programming language is this to be written in?

link|flag
c# would be great – sara Jan 4 at 14:33
vote up 3 vote down

Here is some pseudo-code that might help to get you started

AddChildNodes(TreeNode parentNode)
{
   var childNodeIds GetChildNodeIds(parentNode.Id);
   foreach (int childNodeId in childNodeIds)
   {
      TreeNode childNode = new TreeNode();
      //set other properties...

      //add to parent          
      parentNode.Nodes.Add(childNode);

      //call same function recursively
      AddChildNodes(childNode);
   }

}

Then in your program you get started by getting all items without parent node id (root nodes), creating a node for them and then calling the recursive function above.

link|flag
it didnt work,because i dont only have a parent and child,i hav sub children (root ,child 1,child 2 child 3 child 4)my problem is with the number of children cause im filling my treeview from the data base and this table is an output from a storedprocedure – sara Jan 4 at 14:39
This algorithm is recursive, it should take care of that as well, no matter how many levels you have. Just use this code and the list you provided and make a simulation on a piece of paper, and you will see it works. – rodbv Jan 4 at 14:55
ya ya i got that,but some values get lost,im gonna hav to fix sm stuff – sara Jan 4 at 14:59
If values are being lost you have a bug in the implementation, it doesnt mean the algorithm is wrong. Have you even tried to implement it as I suggested to you? – rodbv Jan 4 at 15:02
whats up people!!im doing it,i told u im gonna hav to fix sm stuff in my code!! – sara Jan 4 at 15:03
show 2 more comments
vote up 0 vote down

Here's an example in VB.NET which can be translated to C# and adapted to your scenario.

link|flag
is there any c# examples? – sara Jan 4 at 14:44
Sorry for being too frank Sara but it sounds like you want people to get the job done for you. It's not that hard to understand VB.NET code if you know C#. – rodbv Jan 4 at 14:53
no im not!! i have been working on this problem for 2 days!!im new to .net thats why im kind of stuck!!anyway thats for ur help – sara Jan 4 at 14:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.