Click here to Skip to main content
15,889,216 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to make control reflect changes was maded on his datasource Pin
led mike5-Mar-08 4:59
led mike5-Mar-08 4:59 
QuestionEfficient Xml reading? Pin
Lutosław5-Mar-08 4:28
Lutosław5-Mar-08 4:28 
AnswerNo Reflection Pin
Lutosław5-Mar-08 4:46
Lutosław5-Mar-08 4:46 
AnswerRe: Efficient Xml reading? Pin
led mike5-Mar-08 5:01
led mike5-Mar-08 5:01 
GeneralRe: Efficient Xml reading? Pin
Lutosław5-Mar-08 6:32
Lutosław5-Mar-08 6:32 
GeneralRe: Efficient Xml reading? Pin
led mike5-Mar-08 6:47
led mike5-Mar-08 6:47 
GeneralRe: Efficient Xml reading? Pin
Lutosław5-Mar-08 6:55
Lutosław5-Mar-08 6:55 
AnswerRe: Efficient Xml reading? Pin
#realJSOP6-Mar-08 6:05
mve#realJSOP6-Mar-08 6:05 
Why don't you do it the easy way:

string myFileName = @"C:\test\my.xml";
DataTable data = new DataTable();
data.ReadXml(myFileName);


After you've done that, you can just retrieve the data from data.Rows...


"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


GeneralRe: Efficient Xml reading? Pin
Lutosław6-Mar-08 6:43
Lutosław6-Mar-08 6:43 
GeneralRe: Efficient Xml reading? Pin
#realJSOP6-Mar-08 10:33
mve#realJSOP6-Mar-08 10:33 
General.NET standard components Pin
Steve Declerck5-Mar-08 3:46
Steve Declerck5-Mar-08 3:46 
GeneralRe: .NET standard components Pin
Xmen Real 5-Mar-08 4:30
professional Xmen Real 5-Mar-08 4:30 
GeneralRe: .NET standard components Pin
Gareth H5-Mar-08 4:34
Gareth H5-Mar-08 4:34 
GeneralRe: .NET standard components Pin
John_Adams5-Mar-08 5:14
John_Adams5-Mar-08 5:14 
GeneralRe: .NET standard components Pin
Pete O'Hanlon5-Mar-08 8:30
mvePete O'Hanlon5-Mar-08 8:30 
GeneralRe: .NET standard components Pin
Steve Declerck5-Mar-08 23:22
Steve Declerck5-Mar-08 23:22 
QuestionThreads and BeginReceive Pin
Echilon5-Mar-08 3:28
Echilon5-Mar-08 3:28 
GeneralRepost ( new member ) Pin
led mike5-Mar-08 4:52
led mike5-Mar-08 4:52 
GeneralWebcontrol inside a webcontrol Pin
ezazazel5-Mar-08 3:26
ezazazel5-Mar-08 3:26 
GeneralRe: Webcontrol inside a webcontrol Pin
Vasudevan Deepak Kumar5-Mar-08 4:34
Vasudevan Deepak Kumar5-Mar-08 4:34 
GeneralRe: Webcontrol inside a webcontrol Pin
ezazazel5-Mar-08 5:01
ezazazel5-Mar-08 5:01 
GeneralRe: Webcontrol inside a webcontrol Pin
ezazazel5-Mar-08 6:28
ezazazel5-Mar-08 6:28 
GeneralDataGridView & DataSet - Updating the DataBase Pin
half-life5-Mar-08 3:23
half-life5-Mar-08 3:23 
QuestionP/Invoking void * - is this the right way? Pin
Luca Leonardo Scorcia5-Mar-08 2:54
professionalLuca Leonardo Scorcia5-Mar-08 2:54 
AnswerRe: P/Invoking void * - is this the right way? Pin
led mike5-Mar-08 4:56
led mike5-Mar-08 4:56 

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.