Click here to Skip to main content
15,894,320 members
Home / Discussions / C#
   

C#

 
QuestionWebbrowser module with proxy Pin
Member 441789218-Mar-09 22:03
Member 441789218-Mar-09 22:03 
QuestionTest of reliability of a programme in C# Pin
abbd18-Mar-09 22:02
abbd18-Mar-09 22:02 
AnswerRe: Test of reliability of a programme in C# Pin
Christian Graus18-Mar-09 22:29
protectorChristian Graus18-Mar-09 22:29 
Questionprocess dependancy Pin
shefa' isied18-Mar-09 21:04
shefa' isied18-Mar-09 21:04 
AnswerRe: process dependancy Pin
Christian Graus18-Mar-09 21:34
protectorChristian Graus18-Mar-09 21:34 
GeneralRe: process dependancy Pin
shefa' isied18-Mar-09 21:42
shefa' isied18-Mar-09 21:42 
GeneralRe: process dependancy Pin
Tom Deketelaere19-Mar-09 0:11
professionalTom Deketelaere19-Mar-09 0:11 
Questioncascading drop down Pin
sonyrehal18-Mar-09 19:05
sonyrehal18-Mar-09 19:05 
plz help me convert this code in vb.net..please help

public CascadingDropDownNameValue[] GetCountry()
{
CascadingDropDownNameValue[] country = new CascadingDropDownNameValue[252];
XmlDocument xmlDoc=new XmlDocument();
xmlDoc.Load(Server.MapPath("CountriesAndProvinces.xml"));

XmlNodeList xmlNl = xmlDoc.SelectNodes("CountriesAndProvinces/Countries/Country");
int i = 0;
foreach(XmlNode node in xmlNl)
{
country[i] = new CascadingDropDownNameValue(node.LastChild.InnerText, node.FirstChild.InnerText);
i++;
}
return country;
}
AnswerRe: cascading drop down Pin
jaypatel51218-Mar-09 19:10
jaypatel51218-Mar-09 19:10 
AnswerRe: cascading drop down Pin
dan!sh 18-Mar-09 19:35
professional dan!sh 18-Mar-09 19:35 
QuestionNew to threading... Pin
Jacob Dixon18-Mar-09 18:40
Jacob Dixon18-Mar-09 18:40 
AnswerRe: New to threading... [modified] Pin
dan!sh 18-Mar-09 19:06
professional dan!sh 18-Mar-09 19:06 
QuestionHow to handle a User Control Event ? Pin
Pankaj Nikam18-Mar-09 18:32
professionalPankaj Nikam18-Mar-09 18:32 
AnswerRe: How to handle a User Control Event ? Pin
Member 56545118-Mar-09 20:49
Member 56545118-Mar-09 20:49 
GeneralRe: How to handle a User Control Event ? Pin
Pankaj Nikam18-Mar-09 21:21
professionalPankaj Nikam18-Mar-09 21:21 
AnswerRe: How to handle a User Control Event ? Pin
dan!sh 18-Mar-09 21:45
professional dan!sh 18-Mar-09 21:45 
GeneralRe: How to handle a User Control Event ? Pin
Pankaj Nikam19-Mar-09 7:21
professionalPankaj Nikam19-Mar-09 7:21 
AnswerRe: How to handle a User Control Event ? Pin
DaveyM6919-Mar-09 0:04
professionalDaveyM6919-Mar-09 0:04 
GeneralRe: How to handle a User Control Event ? Pin
dan!sh 19-Mar-09 2:27
professional dan!sh 19-Mar-09 2:27 
GeneralRe: How to handle a User Control Event ? Pin
DaveyM6919-Mar-09 2:53
professionalDaveyM6919-Mar-09 2:53 
GeneralRe: How to handle a User Control Event ? Pin
Pankaj Nikam19-Mar-09 7:19
professionalPankaj Nikam19-Mar-09 7:19 
GeneralRe: How to handle a User Control Event ? Pin
DaveyM6919-Mar-09 7:33
professionalDaveyM6919-Mar-09 7:33 
GeneralRe: How to handle a User Control Event ? Pin
Pankaj Nikam19-Mar-09 7:38
professionalPankaj Nikam19-Mar-09 7:38 
QuestionIs there a method summary snippet? Pin
12Code18-Mar-09 18:32
12Code18-Mar-09 18:32 
AnswerRe: Is there a method summary snippet? Pin
Abhijit Jana18-Mar-09 18:39
professionalAbhijit Jana18-Mar-09 18:39 

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.