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

C#

 
GeneralI need a code.. Pin
reaza25-Jun-05 23:41
reaza25-Jun-05 23:41 
GeneralRe: I need a code.. Pin
MandMG26-Jun-05 11:14
MandMG26-Jun-05 11:14 
GeneralRichEdit Cpture Pin
Anonymous25-Jun-05 22:47
Anonymous25-Jun-05 22:47 
Questionhow do i get a node position in an xml file Pin
alexcuban25-Jun-05 20:13
sussalexcuban25-Jun-05 20:13 
AnswerRe: how do i get a node position in an xml file Pin
alexcuban25-Jun-05 20:16
sussalexcuban25-Jun-05 20:16 
GeneralRe: how do i get a node position in an xml file Pin
mav.northwind25-Jun-05 20:36
mav.northwind25-Jun-05 20:36 
Generalok tahanks well this is the xml Pin
alexdg0426-Jun-05 7:14
alexdg0426-Jun-05 7:14 
GeneralI use code like this... Pin
je_gonzalez26-Jun-05 11:30
je_gonzalez26-Jun-05 11:30 
private string DumpIndex(XmlNode node)
{
string sAns = "";

if (node.ParentNode != null)
{
int iPos = -1;
foreach (XmlNode c_Node in node.ParentNode.ChildNodes)
{
iPos++;
if (c_Node.Equals(node))
{
sAns = this.DumpIndex(node.ParentNode);
if (sAns.Length > 0) sAns += ".";
sAns += iPos;
break;
}
}
}

return sAns;
}



Generalthanks je_gonzales Pin
alexdg0426-Jun-05 15:03
alexdg0426-Jun-05 15:03 
GeneralRe: thanks je_gonzales Pin
je_gonzalez26-Jun-05 18:03
je_gonzalez26-Jun-05 18:03 
GeneralGet Updated Screen Areas Pin
raed25-Jun-05 19:42
raed25-Jun-05 19:42 
GeneralRe: Get Updated Screen Areas Pin
leppie25-Jun-05 23:10
leppie25-Jun-05 23:10 
GeneralRe: Get Updated Screen Areas Pin
raed26-Jun-05 1:15
raed26-Jun-05 1:15 
GeneralRe: Get Updated Screen Areas Pin
leppie26-Jun-05 8:28
leppie26-Jun-05 8:28 
GeneralDraw a Label text on the per-pixel form Pin
Sasuko25-Jun-05 13:56
Sasuko25-Jun-05 13:56 
GeneralRe: Draw a Label text on the per-pixel form Pin
leppie25-Jun-05 23:06
leppie25-Jun-05 23:06 
QuestionHow can i tracert in C# Pin
Anonymous25-Jun-05 9:51
Anonymous25-Jun-05 9:51 
AnswerRe: How can i tracert in C# Pin
mav.northwind25-Jun-05 20:40
mav.northwind25-Jun-05 20:40 
AnswerRe: How can i tracert in C# Pin
Sebastian Schneider26-Jun-05 5:48
Sebastian Schneider26-Jun-05 5:48 
GeneralPrinting A Form Pin
74Camaro25-Jun-05 6:07
74Camaro25-Jun-05 6:07 
GeneralRe: Printing A Form Pin
wout de zeeuw25-Jun-05 6:47
wout de zeeuw25-Jun-05 6:47 
GeneralRe: Printing A Form Pin
mav.northwind25-Jun-05 20:48
mav.northwind25-Jun-05 20:48 
GeneralRe: Printing A Form Pin
74Camaro26-Jun-05 8:56
74Camaro26-Jun-05 8:56 
Generaladvanced problem Pin
snouto25-Jun-05 5:47
snouto25-Jun-05 5:47 
GeneralRe: advanced problem Pin
Dave Kreskowiak26-Jun-05 9:06
mveDave Kreskowiak26-Jun-05 9:06 

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.