Click here to Skip to main content
15,897,518 members
Home / Discussions / C#
   

C#

 
GeneralRe: streamwrite [modified] Pin
darkelv23-Jan-08 1:37
darkelv23-Jan-08 1:37 
AnswerRe: streamwrite Pin
arkiboys23-Jan-08 2:05
arkiboys23-Jan-08 2:05 
GeneralRe: streamwrite Pin
Thomas Stockwell23-Jan-08 8:09
professionalThomas Stockwell23-Jan-08 8:09 
QuestionHow to update/delete outlook appointments Pin
NewToAspDotNet23-Jan-08 0:17
NewToAspDotNet23-Jan-08 0:17 
AnswerRe: How to update/delete outlook appointments Pin
Jimmanuel23-Jan-08 3:12
Jimmanuel23-Jan-08 3:12 
Questionhow can i add a new node in treeview programatically ? and save changes? Pin
samidhas23-Jan-08 0:01
samidhas23-Jan-08 0:01 
GeneralRe: how can i add a new node in treeview programatically ? and save changes? Pin
led mike23-Jan-08 4:40
led mike23-Jan-08 4:40 
GeneralRe: how can i add a new node in treeview programatically ? and save changes? Pin
ChrisKo23-Jan-08 11:36
ChrisKo23-Jan-08 11:36 
I replied to your other thread, but you should be using the XMLDataSource and it's Save method to save the XML.

I beleive you should just be able to add nodes by creating a new node entry.

// Create the new node. 
TreeNode newNode = new TreeNode();
newNode.Text = row["CategoryName"].ToString(); 
newNode.Value = row["CategoryID"].ToString();        

// Set the PopulateOnDemand property to true so that the child nodes can be 
// dynamically populated.
newNode.PopulateOnDemand = true;

// Set additional properties for the node.
newNode.SelectAction = TreeNodeSelectAction.Expand;

// Add the new node to the ChildNodes collection of the parent node.
node.ChildNodes.Add(newNode);

GeneralMultiple Config Files Pin
#realJSOP23-Jan-08 0:01
professional#realJSOP23-Jan-08 0:01 
GeneralRe: Multiple Config Files Pin
Ed.Poore23-Jan-08 1:59
Ed.Poore23-Jan-08 1:59 
GeneralRe: Multiple Config Files Pin
darkelv23-Jan-08 2:00
darkelv23-Jan-08 2:00 
GeneralRe: Multiple Config Files Pin
#realJSOP23-Jan-08 3:28
professional#realJSOP23-Jan-08 3:28 
GeneralRe: Multiple Config Files Pin
Pete O'Hanlon23-Jan-08 4:24
mvePete O'Hanlon23-Jan-08 4:24 
GeneralRe: Multiple Config Files Pin
#realJSOP23-Jan-08 5:04
professional#realJSOP23-Jan-08 5:04 
Questionhow to make call for play recorded .wav file in linux asterisk server using asterisk.net? Pin
patel_amit22-Jan-08 23:19
patel_amit22-Jan-08 23:19 
GeneralRe: how to make call for play recorded .wav file in linux asterisk server using asterisk.net? Pin
PIEBALDconsult23-Jan-08 3:03
mvePIEBALDconsult23-Jan-08 3:03 
Questionhow do i save the changes? Pin
samidhas22-Jan-08 23:18
samidhas22-Jan-08 23:18 
GeneralRe: how do i save the changes? Pin
Naveed72722-Jan-08 23:35
Naveed72722-Jan-08 23:35 
GeneralRe: how do i save the changes- plz send me sample code? Pin
samidhas22-Jan-08 23:43
samidhas22-Jan-08 23:43 
GeneralRe: how do i save the changes? Pin
ChrisKo23-Jan-08 8:19
ChrisKo23-Jan-08 8:19 
GeneralRe: how do i save the changes? Pin
ChrisKo23-Jan-08 11:29
ChrisKo23-Jan-08 11:29 
QuestionHow to set dateformat in DataGridView column Pin
Neo Andreson22-Jan-08 22:56
Neo Andreson22-Jan-08 22:56 
AnswerRe: How to set dateformat in DataGridView column Pin
Naveed72722-Jan-08 23:20
Naveed72722-Jan-08 23:20 
GeneralRe: How to set dateformat in DataGridView column Pin
Neo Andreson23-Jan-08 0:41
Neo Andreson23-Jan-08 0:41 
AnswerRe: How to set dateformat in DataGridView column Pin
darkelv23-Jan-08 0:48
darkelv23-Jan-08 0:48 

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.