Click here to Skip to main content
15,917,473 members
Home / Discussions / C#
   

C#

 
AnswerRe: (newbee) Reset all back to start app. Pin
Judah Gabriel Himango15-Nov-05 12:07
sponsorJudah Gabriel Himango15-Nov-05 12:07 
GeneralRe: (newbee) Reset all back to start app. Pin
koendr15-Nov-05 19:13
koendr15-Nov-05 19:13 
GeneralRe: (newbee) Reset all back to start app. Pin
S. Senthil Kumar15-Nov-05 21:26
S. Senthil Kumar15-Nov-05 21:26 
Questionmulti keyboard in c# Pin
storion15-Nov-05 8:40
storion15-Nov-05 8:40 
AnswerRe: multi keyboard in c# Pin
Judah Gabriel Himango15-Nov-05 12:10
sponsorJudah Gabriel Himango15-Nov-05 12:10 
QuestionOpenning an XML file into Excel Pin
zaboboa15-Nov-05 8:09
zaboboa15-Nov-05 8:09 
AnswerRe: Openning an XML file into Excel Pin
Judah Gabriel Himango15-Nov-05 12:12
sponsorJudah Gabriel Himango15-Nov-05 12:12 
QuestionXML Heeeelp ! Pin
kerberos_prozac15-Nov-05 6:25
kerberos_prozac15-Nov-05 6:25 
hi, i am facing this trouble (pretty obvious tho')
im working with a xmldocument, the trick is this is coming with some empty attributes
i want to browse for the empty attributes and to get rid of them
this is the example of what do i receive
and under is what ive tried
it does only displays the name of the empty attribute
but do not know how to erase that from the node

SO MANY THANKS IN ADVANCE, PEOPLE !!!

===========================================================
NOW IS LIKE :
example attrib1="" attrib2="yes" attrib3="no" attrib4=""
node attribX=""
-----------------------------------------------------------
SHOULD BE LIKE :
example attrib2="yes" attrib3="no"
node
===========================================================


XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("nuevo.xml");
XmlNodeList nodes = xmlDoc.SelectNodes("//@*");
foreach(XmlNode node in nodes)
{
if (node.Value.ToString() == "")
{
Console.WriteLine(node.Name.ToString());
}
}
Console.ReadLine();

AnswerRe: XML Heeeelp ! Pin
Nick Parker15-Nov-05 18:24
protectorNick Parker15-Nov-05 18:24 
QuestionC#.Net - A Deserialization problem! Help!!! Pin
luckykhalid15-Nov-05 5:32
luckykhalid15-Nov-05 5:32 
AnswerRe: C#.Net - A Deserialization problem! Help!!! Pin
Russell Jones15-Nov-05 5:49
Russell Jones15-Nov-05 5:49 
GeneralRe: C#.Net - A Deserialization problem! Help!!! Pin
luckykhalid15-Nov-05 20:43
luckykhalid15-Nov-05 20:43 
GeneralRe: C#.Net - A Deserialization problem! Help!!! Pin
Russell Jones16-Nov-05 2:41
Russell Jones16-Nov-05 2:41 
AnswerRe: C#.Net - A Deserialization problem! Help!!! Pin
Rob Philpott15-Nov-05 8:53
Rob Philpott15-Nov-05 8:53 
AnswerRe: C#.Net - A Deserialization problem! Help!!! Pin
Marc Clifton15-Nov-05 13:13
mvaMarc Clifton15-Nov-05 13:13 
Questioninjecting code into another process Pin
Keith Vitali15-Nov-05 5:26
Keith Vitali15-Nov-05 5:26 
QuestionThreading slows down whole application Pin
smurfy3415-Nov-05 5:22
smurfy3415-Nov-05 5:22 
AnswerRe: Threading slows down whole application Pin
Andy Brummer15-Nov-05 5:46
sitebuilderAndy Brummer15-Nov-05 5:46 
GeneralRe: Threading slows down whole application Pin
smurfy3415-Nov-05 8:16
smurfy3415-Nov-05 8:16 
GeneralRe: Threading slows down whole application Pin
Andy Brummer15-Nov-05 11:32
sitebuilderAndy Brummer15-Nov-05 11:32 
AnswerRe: Threading slows down whole application Pin
kourvoisier15-Nov-05 10:36
kourvoisier15-Nov-05 10:36 
GeneralRe: Threading slows down whole application Pin
Robert Rohde15-Nov-05 11:16
Robert Rohde15-Nov-05 11:16 
GeneralRe: Threading slows down whole application Pin
kourvoisier15-Nov-05 11:27
kourvoisier15-Nov-05 11:27 
GeneralRe: Threading slows down whole application Pin
Andy Brummer15-Nov-05 11:37
sitebuilderAndy Brummer15-Nov-05 11:37 
QuestionARRGH!! Events are making me go bald Pin
Tom Wright15-Nov-05 5:20
Tom Wright15-Nov-05 5:20 

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.