Click here to Skip to main content
15,898,936 members
Home / Discussions / C#
   

C#

 
Questioncommunication between c# and c++ through windows messaging Pin
Roy K18-Dec-05 19:39
Roy K18-Dec-05 19:39 
Questionbooks or websites for C# Pin
kal13na1318-Dec-05 18:55
kal13na1318-Dec-05 18:55 
AnswerRe: books or websites for C# Pin
enjoycrack18-Dec-05 18:58
enjoycrack18-Dec-05 18:58 
AnswerRe: books or websites for C# Pin
Drew McGhie19-Dec-05 7:48
Drew McGhie19-Dec-05 7:48 
QuestionXML--Reading Nodes.... Pin
Mahi.Ragava18-Dec-05 18:51
Mahi.Ragava18-Dec-05 18:51 
AnswerRe: XML--Reading Nodes.... Pin
Vikram A Punathambekar18-Dec-05 22:31
Vikram A Punathambekar18-Dec-05 22:31 
GeneralRe: XML--Reading Nodes.... Pin
Mahi.Ragava18-Dec-05 23:18
Mahi.Ragava18-Dec-05 23:18 
GeneralRe: XML--Reading Nodes.... Pin
S. Senthil Kumar19-Dec-05 0:04
S. Senthil Kumar19-Dec-05 0:04 
Assuming you'll be using DOM style parsing, load the document using XmlDocument[^] and iterate through the nodes, using the Value[^] property to get the actual value.

Something like
XmlDocument doc = new XmlDocument();
doc.LoadXML(strXML);
foreach(XmlNode node in doc.DocumentElement.ChildNodes) // replace this with code for your hierarchy
   Console.WriteLine(node.Value);


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
QuestionMDI parent and panels Pin
madhusri18-Dec-05 18:38
madhusri18-Dec-05 18:38 
AnswerRe: MDI parent and panels Pin
AETaylor18-Dec-05 19:28
AETaylor18-Dec-05 19:28 
GeneralRe: MDI parent and panels Pin
madhusri18-Dec-05 19:39
madhusri18-Dec-05 19:39 
GeneralRe: MDI parent and panels Pin
AETaylor18-Dec-05 19:45
AETaylor18-Dec-05 19:45 
GeneralRe: MDI parent and panels Pin
madhusri18-Dec-05 21:33
madhusri18-Dec-05 21:33 
GeneralRe: MDI parent and panels Pin
AETaylor19-Dec-05 19:15
AETaylor19-Dec-05 19:15 
QuestionCreate File Format Pin
kenexcelon18-Dec-05 16:58
kenexcelon18-Dec-05 16:58 
AnswerRe: Create File Format Pin
S. Senthil Kumar19-Dec-05 0:25
S. Senthil Kumar19-Dec-05 0:25 
GeneralRe: Create File Format Pin
kenexcelon19-Dec-05 4:03
kenexcelon19-Dec-05 4:03 
GeneralRe: Create File Format Pin
kenexcelon19-Dec-05 5:34
kenexcelon19-Dec-05 5:34 
QuestionApplying new proxy settings to a browser control Pin
pieterman18-Dec-05 16:18
pieterman18-Dec-05 16:18 
Questiontransfer data using phone line Pin
ayuba asia18-Dec-05 15:09
ayuba asia18-Dec-05 15:09 
QuestionDouble quotes within a string Pin
hasanali0018-Dec-05 13:57
hasanali0018-Dec-05 13:57 
AnswerRe: Double quotes within a string Pin
[Marc]18-Dec-05 14:36
[Marc]18-Dec-05 14:36 
AnswerRe: Double quotes within a string Pin
kim3er19-Dec-05 0:00
kim3er19-Dec-05 0:00 
AnswerRe: Double quotes within a string Pin
albCode19-Dec-05 4:28
albCode19-Dec-05 4:28 
QuestionHow can I hide a new app started with Button1 Pin
bklynjava118-Dec-05 13:53
bklynjava118-Dec-05 13:53 

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.