Click here to Skip to main content
15,905,967 members
Home / Discussions / C#
   

C#

 
QuestionPacking and unpacking bits Pin
ScruffyDuck24-Nov-06 21:31
ScruffyDuck24-Nov-06 21:31 
AnswerRe: Packing and unpacking bits Pin
Guffa24-Nov-06 23:16
Guffa24-Nov-06 23:16 
GeneralRe: Packing and unpacking bits Pin
ScruffyDuck24-Nov-06 23:33
ScruffyDuck24-Nov-06 23:33 
GeneralRe: Packing and unpacking bits Pin
CPallini25-Nov-06 0:07
mveCPallini25-Nov-06 0:07 
AnswerRe: Packing and unpacking bits Pin
Guffa25-Nov-06 0:34
Guffa25-Nov-06 0:34 
GeneralRe: Packing and unpacking bits Pin
ScruffyDuck25-Nov-06 1:08
ScruffyDuck25-Nov-06 1:08 
GeneralRe: Packing and unpacking bits Pin
Luc Pattyn25-Nov-06 3:10
sitebuilderLuc Pattyn25-Nov-06 3:10 
GeneralRe: Packing and unpacking bits Pin
Guffa25-Nov-06 4:14
Guffa25-Nov-06 4:14 
GeneralRe: Packing and unpacking bits Pin
ScruffyDuck25-Nov-06 6:19
ScruffyDuck25-Nov-06 6:19 
QuestionHow to Add ToolStripButtons on a Child Form Dynamically... Pin
IamHuM24-Nov-06 21:21
IamHuM24-Nov-06 21:21 
QuestionUPDATING .MDB (please help me guyz!) Pin
Muammar©24-Nov-06 20:52
Muammar©24-Nov-06 20:52 
Questionconvert Java source codes to C# source codes? Pin
George_George24-Nov-06 20:26
George_George24-Nov-06 20:26 
AnswerRe: convert Java source codes to C# source codes? Pin
CWIZO25-Nov-06 4:06
CWIZO25-Nov-06 4:06 
GeneralRe: convert Java source codes to C# source codes? Pin
George_George25-Nov-06 21:28
George_George25-Nov-06 21:28 
QuestionCall one function from another Pin
Andrei Ungureanu24-Nov-06 13:15
Andrei Ungureanu24-Nov-06 13:15 
AnswerRe: Call one function from another Pin
Amar Chaudhary24-Nov-06 13:21
Amar Chaudhary24-Nov-06 13:21 
AnswerRe: Call one function from another Pin
Karthik Kalyanasundaram24-Nov-06 17:19
Karthik Kalyanasundaram24-Nov-06 17:19 
AnswerRe: Call one function from another Pin
Guffa24-Nov-06 23:19
Guffa24-Nov-06 23:19 
QuestionConnection String Pin
btota24-Nov-06 12:47
btota24-Nov-06 12:47 
AnswerRe: Connection String Pin
Andrei Ungureanu24-Nov-06 13:10
Andrei Ungureanu24-Nov-06 13:10 
AnswerRe: Connection String Pin
Dominic Pettifer24-Nov-06 13:47
Dominic Pettifer24-Nov-06 13:47 
QuestionHow to use multiple panels in a windows form Pin
Sonu.T24-Nov-06 12:38
Sonu.T24-Nov-06 12:38 
hello everybody!!
iam generating a windows form which has a treeview at the left and a splitpanel at its right.
the treeview consists of 3 parent nodes with 1 child node in each parent node. the parent nodes have a contextmenu with "Start" and "Stop" as menu items and child nodes have a contextmenu with "Properties" as menuitem.
each of the menuitem has an OnClick event handler.
what i want is, on clicking the menuitem of each of the child nodes, a different panel should be displayed each time. for this, i need to have 3 panels, one for each childnode. when one panel is being displayed, others should be hidden. my requirement is something similar to the WindowsExplorer, but iam not able to generate the desired o/p.
Also, when i right-click on any of the node, the contextmenu is displayed, but after clicking the desired menuitem, the contextmenu just doesnt disappear.
am i missing some property tat has to be set for the contextmenu to disappear after selecting a menuitem?

this is a part of my code:

mnuParentMenu.MenuItems.Add(0, new MenuItem("Start", new System.EventHandler(mnuStart_Click)));<br />
            mnuParentMenu.MenuItems.Add(1,  new MenuItem("Stop", new System.EventHandler(mnuStop_Click)));<br />
mnuChildMenu.MenuItems.Add(0,  = new MenuItem("Properties", new System.EventHandler(mnuPropertiesC_Click)));<br />
<br />
TreeNode node = new TreeNode("Parent");<br />
            node.Tag = "ParentNodeMenu";<br />
            node.ContextMenu = mnuParentMenu;<br />
            treeView1.Nodes.Add(node);<br />
            node = new TreeNode("Child");<br />
            node.Tag = "ChildNodeMenu";<br />
            node.ContextMenu = mnuChildMenu;<br />
            treeView1.Nodes[0].Nodes.Add(node);


I would be thankful to all who wish to take some time and help me out.

Sonu

AnswerRe: How to use multiple panels in a windows form Pin
S. Senthil Kumar24-Nov-06 19:51
S. Senthil Kumar24-Nov-06 19:51 
GeneralRe: How to use multiple panels in a windows form Pin
Sonu.T25-Nov-06 21:12
Sonu.T25-Nov-06 21:12 
GeneralRe: How to use multiple panels in a windows form Pin
S. Senthil Kumar26-Nov-06 1:22
S. Senthil Kumar26-Nov-06 1:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.