Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
AnswerRe: Having problems with getting current username in Windows... Pin
Colin Angus Mackay12-Nov-05 8:12
Colin Angus Mackay12-Nov-05 8:12 
GeneralRe: Having problems with getting current username in Windows... Pin
VampireLord12-Nov-05 8:20
VampireLord12-Nov-05 8:20 
GeneralRe: Having problems with getting current username in Windows... Pin
Colin Angus Mackay12-Nov-05 8:27
Colin Angus Mackay12-Nov-05 8:27 
GeneralRe: Having problems with getting current username in Windows... Pin
VampireLord12-Nov-05 8:43
VampireLord12-Nov-05 8:43 
GeneralRe: Having problems with getting current username in Windows... Pin
Colin Angus Mackay12-Nov-05 11:35
Colin Angus Mackay12-Nov-05 11:35 
AnswerRe: Having problems with getting current username in Windows... Pin
Michael P Butler12-Nov-05 8:57
Michael P Butler12-Nov-05 8:57 
GeneralRe: Having problems with getting current username in Windows... Pin
VampireLord12-Nov-05 23:44
VampireLord12-Nov-05 23:44 
QuestionRemoving empty attributes in xmldocument Pin
kerberos_prozac12-Nov-05 7:19
kerberos_prozac12-Nov-05 7:19 
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
===========================================================

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


-- modified at 13:21 Saturday 12th November, 2005
AnswerRe: Removing empty attributes in xmldocument Pin
kerberos_prozac15-Nov-05 6:21
kerberos_prozac15-Nov-05 6:21 
Questionactive form name problems.. Pin
da vinci coder12-Nov-05 6:08
da vinci coder12-Nov-05 6:08 
AnswerRe: active form name problems.. Pin
turbochimp12-Nov-05 6:41
turbochimp12-Nov-05 6:41 
GeneralRe: active form name problems.. Pin
da vinci coder12-Nov-05 6:44
da vinci coder12-Nov-05 6:44 
AnswerRe: active form name problems.. Pin
Dave Kreskowiak12-Nov-05 15:33
mveDave Kreskowiak12-Nov-05 15:33 
QuestionImap library Pin
eskan12-Nov-05 5:56
eskan12-Nov-05 5:56 
QuestionExport Crystal Report to txt file Pin
Bedevian12-Nov-05 5:43
Bedevian12-Nov-05 5:43 
AnswerRe: Export Crystal Report to txt file Pin
mav.northwind12-Nov-05 6:03
mav.northwind12-Nov-05 6:03 
Questionurl problem Pin
god4k12-Nov-05 4:56
god4k12-Nov-05 4:56 
AnswerRe: url problem Pin
turbochimp12-Nov-05 6:43
turbochimp12-Nov-05 6:43 
QuestionObtaining a startup filename Pin
theladsmith12-Nov-05 4:22
theladsmith12-Nov-05 4:22 
AnswerRe: Obtaining a startup filename Pin
S. Senthil Kumar12-Nov-05 5:55
S. Senthil Kumar12-Nov-05 5:55 
GeneralRe: Obtaining a startup filename Pin
theladsmith12-Nov-05 8:25
theladsmith12-Nov-05 8:25 
GeneralRe: Obtaining a startup filename Pin
S. Senthil Kumar13-Nov-05 4:05
S. Senthil Kumar13-Nov-05 4:05 
GeneralRe: Obtaining a startup filename Pin
theladsmith14-Nov-05 1:33
theladsmith14-Nov-05 1:33 
QuestionHow can i use infinite parameters in a method Pin
da vinci coder12-Nov-05 0:15
da vinci coder12-Nov-05 0:15 
AnswerRe: How can i use infinite parameters in a method Pin
Daniel Turini12-Nov-05 0:59
Daniel Turini12-Nov-05 0:59 

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.