Click here to Skip to main content
15,906,816 members
Home / Discussions / C#
   

C#

 
Question2WebBrowsers like in 2 Apps Pin
AmirNapster5-Sep-09 4:18
AmirNapster5-Sep-09 4:18 
AnswerRe: 2WebBrowsers like in 2 Apps Pin
Arindam Sinha5-Sep-09 5:21
Arindam Sinha5-Sep-09 5:21 
GeneralRe: 2WebBrowsers like in 2 Apps Pin
AmirNapster5-Sep-09 5:30
AmirNapster5-Sep-09 5:30 
GeneralRe: 2WebBrowsers like in 2 Apps Pin
Arindam Sinha5-Sep-09 7:05
Arindam Sinha5-Sep-09 7:05 
AnswerRe: 2WebBrowsers like in 2 Apps Pin
Not Active5-Sep-09 6:21
mentorNot Active5-Sep-09 6:21 
QuestionDynamic Image at Crystal Report 11 Pin
Syed Shahid Hussain5-Sep-09 4:17
Syed Shahid Hussain5-Sep-09 4:17 
Questionentering datas in dropdownlist Pin
atiskumar5-Sep-09 3:09
atiskumar5-Sep-09 3:09 
AnswerRe: entering datas in dropdownlist Pin
Manas Bhardwaj5-Sep-09 3:25
professionalManas Bhardwaj5-Sep-09 3:25 
1.) Split [^]the string

string _data = "a,b,c,d,e";
string [] _splittedData = _data.Split(new Char [] {','});


2.) Loop through the array and add it to the dropdownlist.

foreach(string _stringData in _splittedData)
{
    MyDropDownList.items.add(_stringData);
}



Btw, this is very basic and you should rather buy a good book on C# and start reading that. This would help you to become a better programmer. Rose | [Rose]

Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.

QuestionAmount of items in List<string> has changed while running a loop</string> Pin
softwarejaeger5-Sep-09 2:34
softwarejaeger5-Sep-09 2:34 
AnswerRe: Amount of items in List has changed while running a loop Pin
OriginalGriff5-Sep-09 2:47
mveOriginalGriff5-Sep-09 2:47 
QuestionApplication Trial And StreamRead/Writer Pin
Ben Magee5-Sep-09 1:34
Ben Magee5-Sep-09 1:34 
AnswerRe: Application Trial And StreamRead/Writer Pin
Henry Minute5-Sep-09 1:43
Henry Minute5-Sep-09 1:43 
GeneralRe: Application Trial And StreamRead/Writer Pin
Ben Magee5-Sep-09 2:14
Ben Magee5-Sep-09 2:14 
GeneralRe: Application Trial And StreamRead/Writer Pin
Henry Minute5-Sep-09 3:11
Henry Minute5-Sep-09 3:11 
GeneralRe: Application Trial And StreamRead/Writer Pin
Luc Pattyn5-Sep-09 3:37
sitebuilderLuc Pattyn5-Sep-09 3:37 
GeneralRe: Application Trial And StreamRead/Writer Pin
Ben Magee5-Sep-09 3:44
Ben Magee5-Sep-09 3:44 
GeneralRe: Application Trial And StreamRead/Writer Pin
Luc Pattyn5-Sep-09 4:22
sitebuilderLuc Pattyn5-Sep-09 4:22 
GeneralRe: Application Trial And StreamRead/Writer Pin
Henry Minute5-Sep-09 4:11
Henry Minute5-Sep-09 4:11 
Questionhow to implement (Sh*t | Mouse) Click select in Data Grid? Pin
kumardilip5-Sep-09 1:27
kumardilip5-Sep-09 1:27 
QuestionEffective filestream Pin
Johan Martensson5-Sep-09 0:15
Johan Martensson5-Sep-09 0:15 
AnswerRe: Effective filestream Pin
Rob Smiley5-Sep-09 0:35
Rob Smiley5-Sep-09 0:35 
GeneralRe: Effective filestream Pin
Luc Pattyn5-Sep-09 3:41
sitebuilderLuc Pattyn5-Sep-09 3:41 
GeneralRe: Effective filestream Pin
Johan Martensson5-Sep-09 4:35
Johan Martensson5-Sep-09 4:35 
QuestionAsking for a serial Key Pin
Wamuti4-Sep-09 23:40
Wamuti4-Sep-09 23:40 
AnswerRe: Asking for a serial Key Pin
Manas Bhardwaj5-Sep-09 0:58
professionalManas Bhardwaj5-Sep-09 0:58 

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.