Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to make cursor jump to the next text field Pin
ahchoo10-Mar-06 5:39
ahchoo10-Mar-06 5:39 
QuestionGotFocus of Disabled List View .NET Pin
Lav Pathak9-Mar-06 10:08
Lav Pathak9-Mar-06 10:08 
Questionk-means clustering algorithms Pin
saimee9-Mar-06 7:14
saimee9-Mar-06 7:14 
AnswerRe: k-means clustering algorithms Pin
Roy Heil9-Mar-06 9:24
professionalRoy Heil9-Mar-06 9:24 
Questionuser control Pin
ap_sa9-Mar-06 7:07
ap_sa9-Mar-06 7:07 
QuestionC# and XML Pin
hung_ngole9-Mar-06 5:32
hung_ngole9-Mar-06 5:32 
AnswerRe: C# and XML Pin
spin vector9-Mar-06 6:41
spin vector9-Mar-06 6:41 
AnswerRe: C# and XML Pin
eggie59-Mar-06 17:59
eggie59-Mar-06 17:59 
Your program works when i run it...

using System;
using System.IO;
using System.Xml;

public class Sample {

  public static void Main() {

    XmlDocument doc = new XmlDocument();
    doc.LoadXml(@"<xml>
  <element>ABC</element>
  <element>ABC</element>
</xml>");


XmlElement root = doc.DocumentElement;            
            XmlNodeList nodeList = root.ChildNodes;
            Console.Write(nodeList[0].InnerText);
            for (int i = 1; i < nodeList.Count; i++)
            {
                Console.Write(","+nodeList[i].InnerText);
            }

    
		Console.ReadLine();
  }
} 

/\ |_ E X E GG
AnswerRe: C# and XML Pin
Andreas X9-Mar-06 20:15
professionalAndreas X9-Mar-06 20:15 
AnswerRe: C# and XML Pin
Guffa9-Mar-06 20:38
Guffa9-Mar-06 20:38 
QuestionC# connection to Analysis services Pin
swap209-Mar-06 5:17
swap209-Mar-06 5:17 
QuestionHow to display smiley? Pin
Codecrammer9-Mar-06 4:41
Codecrammer9-Mar-06 4:41 
JokeRe: How to display smiley? Pin
mav.northwind9-Mar-06 4:56
mav.northwind9-Mar-06 4:56 
GeneralRe: How to display smiley? Pin
Judah Gabriel Himango9-Mar-06 5:10
sponsorJudah Gabriel Himango9-Mar-06 5:10 
AnswerRe: How to display smiley? Pin
Judah Gabriel Himango9-Mar-06 5:11
sponsorJudah Gabriel Himango9-Mar-06 5:11 
QuestionStupid question for web Pin
papa19809-Mar-06 4:32
papa19809-Mar-06 4:32 
AnswerRe: Stupid question for web Pin
Ankit Aneja9-Mar-06 19:33
Ankit Aneja9-Mar-06 19:33 
QuestionClear buffer Pin
hung_ngole9-Mar-06 4:32
hung_ngole9-Mar-06 4:32 
AnswerRe: Clear buffer Pin
leppie9-Mar-06 4:34
leppie9-Mar-06 4:34 
GeneralRe: Clear buffer Pin
hung_ngole9-Mar-06 4:52
hung_ngole9-Mar-06 4:52 
Questionwhere to download Longhorn SDK Pin
Sheel Gohe9-Mar-06 3:27
Sheel Gohe9-Mar-06 3:27 
AnswerRe: where to download Longhorn SDK Pin
gnjunge9-Mar-06 3:35
gnjunge9-Mar-06 3:35 
Questiondelegate thru an interface Pin
spin vector9-Mar-06 3:17
spin vector9-Mar-06 3:17 
AnswerRe: delegate thru an interface Pin
leppie9-Mar-06 4:42
leppie9-Mar-06 4:42 
GeneralRe: delegate thru an interface Pin
spin vector9-Mar-06 5:02
spin vector9-Mar-06 5:02 

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.