Click here to Skip to main content
16,013,082 members
Home / Discussions / C#
   

C#

 
QuestionHow to change form's skin ? [modified] Pin
SajjadZare22-Nov-09 5:31
SajjadZare22-Nov-09 5:31 
AnswerRe: How to change form's skin ? Pin
Richard MacCutchan22-Nov-09 7:08
mveRichard MacCutchan22-Nov-09 7:08 
QuestionNeed to Learn Split Method Pin
M Riaz Bashir22-Nov-09 0:38
M Riaz Bashir22-Nov-09 0:38 
AnswerRe: Need to Learn Split Method Pin
Richard MacCutchan22-Nov-09 1:14
mveRichard MacCutchan22-Nov-09 1:14 
GeneralRe: Need to Learn Split Method Pin
M Riaz Bashir22-Nov-09 1:45
M Riaz Bashir22-Nov-09 1:45 
GeneralRe: Need to Learn Split Method Pin
Richard MacCutchan22-Nov-09 2:00
mveRichard MacCutchan22-Nov-09 2:00 
GeneralRe: Need to Learn Split Method Pin
PIEBALDconsult22-Nov-09 3:49
mvePIEBALDconsult22-Nov-09 3:49 
GeneralRe: Need to Learn Split Method Pin
OriginalGriff22-Nov-09 4:28
mveOriginalGriff22-Nov-09 4:28 
Trust us, if you have:
string inString = "1234,5223,Apple,Bank";
string[] bits = s.Split(',');
foreach(string s in bits)
   {
   Console.WriteLine(s);
   }
You will see it works!
The extra slashes you can see in the debugger are confusing, but they are only there to "escape" the double quote characters - just as you would type them into a string. You will get used to it eventually, everyone does!

No trees were harmed in the sending of this message; however, a significant number of electrons were slightly inconvenienced.

This message is made of fully recyclable Zeros and Ones

"Rumour has it that if you play Microsoft CDs backwards you will hear Satanic messages.Worse still, is that if you play them forwards they will install Windows"

GeneralRe: Need to Learn Split Method Pin
Shameel22-Nov-09 23:24
professionalShameel22-Nov-09 23:24 
QuestionDataGridViewComBoBoxColumn Binding Problem Pin
Abdul Rahman Hamidy21-Nov-09 22:44
Abdul Rahman Hamidy21-Nov-09 22:44 
Questiondatagridview checkbox Pin
Yulianto.21-Nov-09 21:32
Yulianto.21-Nov-09 21:32 
AnswerMessage Closed Pin
21-Nov-09 22:41
stancrm21-Nov-09 22:41 
GeneralRe: datagridview checkbox Pin
Yulianto.21-Nov-09 23:04
Yulianto.21-Nov-09 23:04 
GeneralRe: datagridview checkbox Pin
dojohansen23-Nov-09 1:36
dojohansen23-Nov-09 1:36 
Questionschedule generator not working properly Pin
rooster215421-Nov-09 8:37
rooster215421-Nov-09 8:37 
QuestionRe: schedule generator not working properly Pin
harold aptroot21-Nov-09 8:52
harold aptroot21-Nov-09 8:52 
AnswerRe: schedule generator not working properly Pin
dojohansen23-Nov-09 1:53
dojohansen23-Nov-09 1:53 
QuestionLoad a txt file in a richTextBox? Pin
ahlm21-Nov-09 8:34
ahlm21-Nov-09 8:34 
AnswerRe: Load a txt file in a richTextBox? Pin
Luc Pattyn21-Nov-09 8:37
sitebuilderLuc Pattyn21-Nov-09 8:37 
GeneralRe: Load a txt file in a richTextBox? Pin
ahlm21-Nov-09 8:40
ahlm21-Nov-09 8:40 
GeneralRe: Load a txt file in a richTextBox? Pin
Luc Pattyn21-Nov-09 9:02
sitebuilderLuc Pattyn21-Nov-09 9:02 
GeneralRe: Load a txt file in a richTextBox? Pin
ahlm21-Nov-09 11:53
ahlm21-Nov-09 11:53 
GeneralRe: Load a txt file in a richTextBox? Pin
Luc Pattyn21-Nov-09 12:23
sitebuilderLuc Pattyn21-Nov-09 12:23 
GeneralRe: Load a txt file in a richTextBox? Pin
ahlm22-Nov-09 7:38
ahlm22-Nov-09 7:38 
GeneralRe: Load a txt file in a richTextBox? Pin
dojohansen23-Nov-09 9:32
dojohansen23-Nov-09 9:32 

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.