Click here to Skip to main content
15,891,914 members
Home / Discussions / C#
   

C#

 
AnswerRe: NumericUpDown Mouse Wheel Pin
bscaer23-Apr-09 10:36
bscaer23-Apr-09 10:36 
Questionform or buttons in rtf [modified] Pin
panoskatws24-Apr-08 2:09
panoskatws24-Apr-08 2:09 
GeneralRe: form or buttons in rtf Pin
Christian Graus24-Apr-08 2:30
protectorChristian Graus24-Apr-08 2:30 
GeneralRe: form or buttons in rtf Pin
Duncan Edwards Jones24-Apr-08 5:57
professionalDuncan Edwards Jones24-Apr-08 5:57 
QuestionTreeNode question Pin
Muammar©24-Apr-08 1:46
Muammar©24-Apr-08 1:46 
GeneralRe: TreeNode question Pin
Simon P Stevens24-Apr-08 2:00
Simon P Stevens24-Apr-08 2:00 
GeneralRe: TreeNode question Pin
Muammar©24-Apr-08 2:04
Muammar©24-Apr-08 2:04 
GeneralRe: TreeNode question Pin
Ruben Jönsson25-Apr-08 13:34
Ruben Jönsson25-Apr-08 13:34 
When saving the TreeNode as a new object you should use the Clone() member.

TreeNode workNode=TreeView.Nodes[0].Clone();

When setting it back to the TreeView you should remove the old node and add the new.

TreeView.Nodes.RemoveAt(0);<br />
TreeView.Nodes.AddAt(0,workNode);


/Ruben
RJJournal
GeneralSQL Data Access Class and Casting DataSets Pin
blakey40424-Apr-08 0:22
blakey40424-Apr-08 0:22 
GeneralRe: SQL Data Access Class and Casting DataSets Pin
Broken Bokken24-Apr-08 3:13
Broken Bokken24-Apr-08 3:13 
AnswerRe: SQL Data Access Class and Casting DataSets Pin
blakey40424-Apr-08 3:54
blakey40424-Apr-08 3:54 
GeneralRe: SQL Data Access Class and Casting DataSets Pin
Broken Bokken24-Apr-08 9:28
Broken Bokken24-Apr-08 9:28 
GeneralConvert CCITT ulaw To PCM Audio format Pin
Gopal.S24-Apr-08 0:19
Gopal.S24-Apr-08 0:19 
GeneralRe: Convert CCITT ulaw To PCM Audio format Pin
Mike Dimmick24-Apr-08 4:40
Mike Dimmick24-Apr-08 4:40 
GeneralRe: Convert CCITT ulaw To PCM Audio format Pin
ChrisKo24-Apr-08 9:00
ChrisKo24-Apr-08 9:00 
QuestionConnecting C# with microsoft access through a netwok Pin
Yousefjt7724-Apr-08 0:13
Yousefjt7724-Apr-08 0:13 
AnswerRe: Connecting C# with microsoft access through a netwok Pin
Arjun Marwaha24-Apr-08 2:20
Arjun Marwaha24-Apr-08 2:20 
Generaldivide by zero Pin
George_George23-Apr-08 23:30
George_George23-Apr-08 23:30 
GeneralRe: divide by zero Pin
Pete O'Hanlon24-Apr-08 0:02
mvePete O'Hanlon24-Apr-08 0:02 
GeneralRe: divide by zero Pin
George_George24-Apr-08 0:05
George_George24-Apr-08 0:05 
GeneralRe: divide by zero Pin
Simon P Stevens24-Apr-08 0:24
Simon P Stevens24-Apr-08 0:24 
GeneralRe: divide by zero Pin
George_George24-Apr-08 0:58
George_George24-Apr-08 0:58 
GeneralRe: divide by zero Pin
Pete O'Hanlon24-Apr-08 1:16
mvePete O'Hanlon24-Apr-08 1:16 
GeneralRe: divide by zero Pin
George_George24-Apr-08 1:23
George_George24-Apr-08 1:23 
GeneralRe: divide by zero Pin
George_George24-Apr-08 0:07
George_George24-Apr-08 0:07 

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.