hi,
i am created the view at run time using the following code
TreeView myTreeView = new TreeView();
myTreeView.Location = new Point(0,0);
myTreeView.Size = new Size(100,200);
this.Controls.Add(myTreeView);
//now that it's on the form, you can add nodes to it
myTreeView.Nodes.Add(new TreeNode("something");
but runtime the tree view not displayed in the form. any other thing is need. please give ur suggestions.........
Regards,
Karthikeyan S