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

C#

 
GeneralCHECKSUM VERIFYING FUNCTION Pin
maheshfour13-Mar-05 23:30
maheshfour13-Mar-05 23:30 
GeneralStartup Object C# Pin
Anonymous13-Mar-05 23:16
Anonymous13-Mar-05 23:16 
GeneralRe: Startup Object C# Pin
Colin Angus Mackay14-Mar-05 0:47
Colin Angus Mackay14-Mar-05 0:47 
GeneralPacking and deploying C# .Net application Pin
rajasekar_2913-Mar-05 22:28
rajasekar_2913-Mar-05 22:28 
GeneralRe: Packing and deploying C# .Net application Pin
Christian Wikander13-Mar-05 22:50
Christian Wikander13-Mar-05 22:50 
GeneralRe: Packing and deploying C# .Net application Pin
rajasekar_2913-Mar-05 23:03
rajasekar_2913-Mar-05 23:03 
GeneralXML Parsing Pin
jatin.mehta@gmail.com13-Mar-05 21:49
jatin.mehta@gmail.com13-Mar-05 21:49 
GeneralRe: XML Parsing Pin
Christian Wikander13-Mar-05 22:19
Christian Wikander13-Mar-05 22:19 
You can use the GetElementsByTagName method of an XmlDocument object. The method will return an XmlNodeList that is enumerable. The following code assumes that you have an XmlDocument set up in the variable xdMyXmlDoc.

XmlNodeList xnlElements = xdMyXmlDoc.GetElementsByTagName("WORKSPACE");
foreach(XmlElement xeThis in xnlElements)
{
// Do something
}

If you don't want to fetch XmlElements, change XmlElement within the foreach to whatever is in your Xml file.
GeneralParsing XML Pin
Anonymous13-Mar-05 21:45
Anonymous13-Mar-05 21:45 
GeneralI like convert Icon to String Pin
VictorVB13-Mar-05 20:56
VictorVB13-Mar-05 20:56 
GeneralRe: I like convert Icon to String Pin
J4amieC13-Mar-05 22:24
J4amieC13-Mar-05 22:24 
GeneralRe: I like convert Icon to String Pin
VictorVB13-Mar-05 23:50
VictorVB13-Mar-05 23:50 
GeneralRe: I like convert Icon to String Pin
J4amieC14-Mar-05 0:57
J4amieC14-Mar-05 0:57 
Generalbypassing the button event Pin
maheshfour13-Mar-05 20:11
maheshfour13-Mar-05 20:11 
GeneralRe: bypassing the button event Pin
Christian Wikander13-Mar-05 21:26
Christian Wikander13-Mar-05 21:26 
GeneralRe: bypassing the button event Pin
ameto13-Mar-05 23:37
ameto13-Mar-05 23:37 
GeneralRe: bypassing the button event Pin
Christian Wikander13-Mar-05 23:46
Christian Wikander13-Mar-05 23:46 
GeneralRe: bypassing the button event Pin
maheshfour14-Mar-05 0:05
maheshfour14-Mar-05 0:05 
GeneralRe: bypassing the button event Pin
mav.northwind14-Mar-05 0:17
mav.northwind14-Mar-05 0:17 
GeneralRe: bypassing the button event Pin
maheshfour14-Mar-05 0:28
maheshfour14-Mar-05 0:28 
GeneralRe: bypassing the button event Pin
mav.northwind14-Mar-05 0:53
mav.northwind14-Mar-05 0:53 
GeneralRe: bypassing the button event Pin
Pushkar Pathak15-Mar-05 19:22
Pushkar Pathak15-Mar-05 19:22 
GeneralRe: bypassing the button event Pin
Pushkar Pathak15-Mar-05 19:14
Pushkar Pathak15-Mar-05 19:14 
QuestionHow can I embed my application to .NET environment? Pin
Anonymous13-Mar-05 20:09
Anonymous13-Mar-05 20:09 
Generalbypassing the button evet Pin
maheshfour13-Mar-05 20:09
maheshfour13-Mar-05 20:09 

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.