Click here to Skip to main content
15,919,500 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# compiling doubt Pin
Judah Gabriel Himango14-Aug-06 4:57
sponsorJudah Gabriel Himango14-Aug-06 4:57 
QuestionMultithreading, Timers and flickering ListView Pin
Tomi8714-Aug-06 3:30
Tomi8714-Aug-06 3:30 
AnswerRe: Multithreading, Timers and flickering ListView Pin
Ista14-Aug-06 3:43
Ista14-Aug-06 3:43 
GeneralRe: Multithreading, Timers and flickering ListView Pin
Tomi8714-Aug-06 8:31
Tomi8714-Aug-06 8:31 
GeneralRe: Multithreading, Timers and flickering ListView Pin
Ista14-Aug-06 9:51
Ista14-Aug-06 9:51 
GeneralRe: Multithreading, Timers and flickering ListView Pin
Tomi8714-Aug-06 23:59
Tomi8714-Aug-06 23:59 
QuestionT namespace is not found Pin
Ista14-Aug-06 3:26
Ista14-Aug-06 3:26 
AnswerRe: T namespace is not found Pin
JoeSharp14-Aug-06 3:40
JoeSharp14-Aug-06 3:40 
GeneralRe: T namespace is not found Pin
Ista14-Aug-06 3:42
Ista14-Aug-06 3:42 
AnswerRe: T namespace is not found Pin
Josh Smith14-Aug-06 3:46
Josh Smith14-Aug-06 3:46 
GeneralRe: T namespace is not found Pin
Ista14-Aug-06 3:56
Ista14-Aug-06 3:56 
AnswerRe: T namespace is not found Pin
Colin Angus Mackay14-Aug-06 4:00
Colin Angus Mackay14-Aug-06 4:00 
Questiondataset computation Pin
Saamir14-Aug-06 2:57
Saamir14-Aug-06 2:57 
QuestionLoaderLock was detected Pin
Johan Russouw14-Aug-06 2:53
Johan Russouw14-Aug-06 2:53 
AnswerRe: LoaderLock was detected Pin
Ista14-Aug-06 4:12
Ista14-Aug-06 4:12 
AnswerRe: LoaderLock was detected Pin
Mike_V14-Aug-06 4:35
Mike_V14-Aug-06 4:35 
Question.DLL VS .EXE in Dot Net Pin
Arun Hegde14-Aug-06 2:50
Arun Hegde14-Aug-06 2:50 
AnswerRe: .DLL VS .EXE in Dot Net Pin
Guffa14-Aug-06 3:00
Guffa14-Aug-06 3:00 
AnswerRe: .DLL VS .EXE in Dot Net Pin
Ista14-Aug-06 3:24
Ista14-Aug-06 3:24 
GeneralRe: .DLL VS .EXE in Dot Net Pin
Super Lloyd14-Aug-06 4:26
Super Lloyd14-Aug-06 4:26 
Questionxml search Pin
kkadir14-Aug-06 2:41
kkadir14-Aug-06 2:41 
AnswerRe: xml search Pin
MHASSANF14-Aug-06 2:44
MHASSANF14-Aug-06 2:44 
GeneralRe: xml search Pin
kkadir14-Aug-06 3:32
kkadir14-Aug-06 3:32 
GeneralRe: xml search [modified] Pin
MHASSANF15-Aug-06 4:12
MHASSANF15-Aug-06 4:12 
AnswerRe: xml search Pin
Ista14-Aug-06 4:17
Ista14-Aug-06 4:17 
pashje wrote:
Can I do this using xpath (I haven't find any SQL like "like" method under xpath) or may I choose another strategy?


yes you should

XmlDocument doc = new XmlDocument()
doc.Load(filename);

XmlNodeList list = doc.SelectNodes("//DATA@[your argusments here]");

I suggest grabbing the old book "XML in a nutshell". You need to know a few commands for xpath to get this to work.

Then just to a foreach on the XmlNodeList

foreach(XmlNode node in list){}


--------------------------------------------------------

1 line of code equals many bugs. So don't write any!!

My mad coder blog

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.