Treeview

  • Thread starter Thread starter JJ
  • Start date Start date
JJ said:
What's the command(s) to set a parent node then add a
Child node?

TreeNode parent = treeView1.Nodes.Add("Parent node");
TreeNode child = parent.Nodes.Add("Child node");

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
Thanks for replying Frank.

JJ


-----Original Message-----


TreeNode parent = treeView1.Nodes.Add("Parent node");
TreeNode child = parent.Nodes.Add("Child node");

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)


.
 
Back
Top