Hi all i have created a tree view ... I have assigned some nodes in collections to it. what i need is if i select a child node i would like to open a panel in the same form.
rootnode
|-> childnode(if i select this node i would like to show that panel)..
Loading
Dorababu MekaPosted Jun 28, 2010, 6:12 AM
{
TreeNode node = treeView1.SelectedNode;
if (node.Name == "Childnode")
{
panel1.Visible = true;
}
}
VivekhPosted Jun 28, 2010, 8:04 AM
For example when i click on child i will have a panel and in that panel i will save some information entered by the user. Now i would like to save the file as text file in my application directory, and also i would like to display the file under the child node like
Root
|-> Child
|-> a.txt
|-> Child1