Click here to Skip to main content
15,901,505 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataGridView, DataSource and RowCount related query Pin
dan!sh 7-Jan-10 4:56
professional dan!sh 7-Jan-10 4:56 
QuestionCreate object explorer,query analyser and registered services windows Pin
tasumisra7-Jan-10 3:43
tasumisra7-Jan-10 3:43 
QuestionC# DataTable Pin
jojoba20107-Jan-10 3:18
jojoba20107-Jan-10 3:18 
AnswerRe: C# DataTable Pin
mrcooll7-Jan-10 4:50
mrcooll7-Jan-10 4:50 
AnswerRe: C# DataTable Pin
loyal ginger7-Jan-10 4:52
loyal ginger7-Jan-10 4:52 
GeneralRe: C# DataTable Pin
OriginalGriff7-Jan-10 5:23
mveOriginalGriff7-Jan-10 5:23 
AnswerRe: C# DataTable Pin
OriginalGriff7-Jan-10 5:19
mveOriginalGriff7-Jan-10 5:19 
QuestionCsharp .Net doubt [modified] Pin
djsproject7-Jan-10 2:59
djsproject7-Jan-10 2:59 
AnswerRe: Csharp .Net doubt Pin
Ben Fair7-Jan-10 3:03
Ben Fair7-Jan-10 3:03 
GeneralRe: Csharp .Net doubt Pin
djsproject7-Jan-10 3:08
djsproject7-Jan-10 3:08 
GeneralRe: Csharp .Net doubt Pin
#realJSOP7-Jan-10 3:17
professional#realJSOP7-Jan-10 3:17 
GeneralRe: Csharp .Net doubt Pin
dojohansen7-Jan-10 3:08
dojohansen7-Jan-10 3:08 
AnswerRe: Csharp .Net doubt Pin
dojohansen7-Jan-10 3:12
dojohansen7-Jan-10 3:12 
GeneralRe: Csharp .Net doubt Pin
djsproject7-Jan-10 3:18
djsproject7-Jan-10 3:18 
GeneralRe: Csharp .Net doubt Pin
dojohansen7-Jan-10 3:39
dojohansen7-Jan-10 3:39 
General[Message Deleted] Pin
djsproject7-Jan-10 3:26
djsproject7-Jan-10 3:26 
GeneralRe: Csharp .Net doubt Pin
djsproject7-Jan-10 3:37
djsproject7-Jan-10 3:37 
AnswerRe: Csharp .Net doubt Pin
Luc Pattyn7-Jan-10 3:39
sitebuilderLuc Pattyn7-Jan-10 3:39 
AnswerRe: Csharp .Net doubt Pin
Lutosław7-Jan-10 12:28
Lutosław7-Jan-10 12:28 
GeneralRe: Csharp .Net doubt Pin
djsproject12-Jan-10 17:28
djsproject12-Jan-10 17:28 
Questiona problem about string Pin
Erdinc277-Jan-10 2:22
Erdinc277-Jan-10 2:22 
hi guys...i have a problem about string usage..i want to make capital letters of a text in the textbox after space...for example if textbox is entered like that mert efe i want to write like that Mert Efe..to do that i wrote that codes

public string Cevir(string text)
{
string temizlenmis = null;
for (int i = 0; i < text.Length; i++)
{
if ((i == 0) || (i==text.IndexOf(" ")+1))
temizlenmis += char.ToUpper(text[i]);
else
temizlenmis += char.ToLower(text[i]);
}
return temizlenmis;
}

and it works for two words but if i enter third word it doesnt work as i wished...it works like that if i enter three words like mert efe demir and it gives result Mert Efe demir
so what is wrong here ?
AnswerRe: a problem about string [modified] Pin
harold aptroot7-Jan-10 2:33
harold aptroot7-Jan-10 2:33 
GeneralRe: a problem about string Pin
Erdinc277-Jan-10 2:58
Erdinc277-Jan-10 2:58 
GeneralRe: a problem about string Pin
harold aptroot7-Jan-10 3:01
harold aptroot7-Jan-10 3:01 
GeneralRe: a problem about string [modified] Pin
Erdinc277-Jan-10 3:16
Erdinc277-Jan-10 3:16 

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.