J JJ Nov 21, 2003 #1 Hi, What's the command(s) to set a parent node then add a Child node? Thanks, JJ
F Frank Oquendo Nov 21, 2003 #2 JJ said: What's the command(s) to set a parent node then add a Child node? Click to expand... 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)
JJ said: What's the command(s) to set a parent node then add a Child node? Click to expand... 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)
J JJ Nov 21, 2003 #3 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) . Click to expand...
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) . Click to expand...