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

C#

 
GeneralRe: System.Globalization - Chinese Translation Pin
Jay Shankar11-Aug-04 22:39
Jay Shankar11-Aug-04 22:39 
GeneralRe: System.Globalization - Chinese Translation Pin
Colin Angus Mackay11-Aug-04 22:58
Colin Angus Mackay11-Aug-04 22:58 
GeneralRe: System.Globalization - Chinese Translation Pin
Anonymous11-Aug-04 23:04
Anonymous11-Aug-04 23:04 
GeneralRe: System.Globalization - Chinese Translation Pin
Colin Angus Mackay11-Aug-04 23:45
Colin Angus Mackay11-Aug-04 23:45 
GeneralRe: System.Globalization - Chinese Translation Pin
Jay Shankar12-Aug-04 0:30
Jay Shankar12-Aug-04 0:30 
GeneralRe: System.Globalization - Chinese Translation Pin
Colin Angus Mackay12-Aug-04 0:44
Colin Angus Mackay12-Aug-04 0:44 
GeneralXmlNode.Value Property Pin
eggie511-Aug-04 19:33
eggie511-Aug-04 19:33 
GeneralRe: XmlNode.Value Property Pin
ChrisAdams12-Aug-04 0:00
ChrisAdams12-Aug-04 0:00 
When an xml node with text is loaded up into a dom, the text is not added as part of the element, but is added as a seperate child node of type text.

So something which looks like <MyNode>Hello</MyNode> in an xml file, would be represented within the dom as

Element Node - Name: MyNode
---- Text Node - Value Hello.

So when looping round the dom, to get the value of the MyNode element you need to access to first child and get it's value. root.firstChild.Value.

Or use the most helpful Text property instead root.Text.

Hope this helps....


GeneralRe: XmlNode.Value Property Pin
eggie512-Aug-04 7:01
eggie512-Aug-04 7:01 
GeneralRe: XmlNode.Value Property Pin
eggie512-Aug-04 7:10
eggie512-Aug-04 7:10 
GeneralRe: XmlNode.Value Property Pin
ChrisAdams12-Aug-04 9:47
ChrisAdams12-Aug-04 9:47 
QuestionHow to manage DB transaction using MTS Pin
yu-yu11-Aug-04 18:19
yu-yu11-Aug-04 18:19 
GeneralScrollBar Woes... Pin
Anonymous11-Aug-04 17:26
Anonymous11-Aug-04 17:26 
GeneralRe: ScrollBar Woes... Pin
Jay Shankar11-Aug-04 21:10
Jay Shankar11-Aug-04 21:10 
Questionhow to capture user input value in UserControl Pin
changcn11-Aug-04 17:03
changcn11-Aug-04 17:03 
AnswerRe: how to capture user input value in UserControl Pin
Jay Shankar11-Aug-04 21:34
Jay Shankar11-Aug-04 21:34 
GeneralConvert vb to C# Pin
tzewei11-Aug-04 16:52
tzewei11-Aug-04 16:52 
GeneralRe: Convert vb to C# Pin
changcn11-Aug-04 17:05
changcn11-Aug-04 17:05 
GeneralRe: Convert vb to C# Pin
sreejith ss nair11-Aug-04 17:21
sreejith ss nair11-Aug-04 17:21 
GeneralRe: Convert vb to C# Pin
tzewei11-Aug-04 17:59
tzewei11-Aug-04 17:59 
GeneralLooking for ideas on how dynamically resize controls Pin
Flack11-Aug-04 16:44
Flack11-Aug-04 16:44 
GeneralRe: Looking for ideas on how dynamically resize controls Pin
Jay Shankar11-Aug-04 21:52
Jay Shankar11-Aug-04 21:52 
QuestionProgramatically browsing a website and keeping a session id? Pin
Carl Mercier11-Aug-04 16:13
Carl Mercier11-Aug-04 16:13 
AnswerRe: Programatically browsing a website and keeping a session id? Pin
Armand du Plessis11-Aug-04 19:45
Armand du Plessis11-Aug-04 19:45 
GeneralRe: Programatically browsing a website and keeping a session id? Pin
Carl Mercier12-Aug-04 3:51
Carl Mercier12-Aug-04 3:51 

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.