Click here to Skip to main content
15,913,408 members

Comments by enginbilici (Top 14 by date)

enginbilici 7-Dec-11 3:33am View    
Thank you very much Saichandra, It worked successfuly. But there is a little problem now, It adds same person to child nodes even there is same person already. But I think I can handle it, thank you soo much again.
enginbilici 7-Dec-11 2:27am View    
OK, thank you Saichandra...
enginbilici 6-Dec-11 11:55am View    
Hi, first of all thank you for your interest.
treeView1.Nodes.Add(listBox1.SelectedItem.ToString()); ---> this line has throw an error and I have changed it to
-------
TreeNode node = new TreeNode();
node.Text = listBox1.SelectedItem.ToString();
TreeView1.Nodes.Add(node);
-------


TreeNode currentnode = node;
currentnode.Nodes.Add(listBox2.SelectedItem.ToString()); ---> this line has an error too but I could not solve it and I changed it to
--------
currentnode.ChildNode.Add(node);
--------

It does not throw any error but, It only adds the items of listbox1, does not adds listbox2 to nodes.
Thanks again...
enginbilici 2-Dec-11 15:11pm View    
There are 3 main problems for me:
1) background must be disabled so that no one can click anything till they close the popUp
2) there must be a mapping rectangle area to link another page
3) popUp should be loaded on pageLoad(onload) not when clicking some controls

I know I wanted so many things but please help if you know the solution. The exactly same example of my want is here : www.eczacibasi.com.tr
enginbilici 2-Dec-11 12:00pm View    
the example above, when you click "Tıkla beğen!" (mapped image), you will be redirected to facebook page.