Click here to Skip to main content
15,920,596 members
Home / Discussions / C#
   

C#

 
QuestionReadOnly Radio Button? Pin
rich_wenger12-Nov-05 8:25
rich_wenger12-Nov-05 8:25 
AnswerRe: ReadOnly Radio Button? Pin
Colin Angus Mackay12-Nov-05 8:28
Colin Angus Mackay12-Nov-05 8:28 
GeneralRe: ReadOnly Radio Button? Pin
rich_wenger12-Nov-05 12:03
rich_wenger12-Nov-05 12:03 
GeneralRe: ReadOnly Radio Button? Pin
Kamrul Hasan12-Nov-05 22:42
Kamrul Hasan12-Nov-05 22:42 
GeneralRe: ReadOnly Radio Button? Pin
rich_wenger13-Nov-05 3:13
rich_wenger13-Nov-05 3:13 
GeneralRe: ReadOnly Radio Button? Pin
Dan Neely14-Nov-05 2:10
Dan Neely14-Nov-05 2:10 
GeneralRe: ReadOnly Radio Button? Pin
rich_wenger14-Nov-05 4:50
rich_wenger14-Nov-05 4:50 
GeneralRe: ReadOnly Radio Button? Pin
Kamrul Hasan14-Nov-05 6:24
Kamrul Hasan14-Nov-05 6:24 
GeneralRe: ReadOnly Radio Button? Pin
rich_wenger14-Nov-05 8:44
rich_wenger14-Nov-05 8:44 
GeneralRe: ReadOnly Radio Button? Pin
Kamrul Hasan15-Nov-05 2:12
Kamrul Hasan15-Nov-05 2:12 
QuestionHaving problems with getting current username in Windows... Pin
VampireLord12-Nov-05 7:35
VampireLord12-Nov-05 7:35 
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 

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.