Click here to Skip to main content
15,914,481 members
Home / Discussions / C#
   

C#

 
GeneralRe: organization chart Pin
Pete O'Hanlon20-Mar-07 5:38
mvePete O'Hanlon20-Mar-07 5:38 
Questionhow to debug Pin
Rocky#20-Mar-07 2:23
Rocky#20-Mar-07 2:23 
AnswerRe: how to debug Pin
joon vh.20-Mar-07 2:30
joon vh.20-Mar-07 2:30 
GeneralRe: how to debug Pin
Rocky#20-Mar-07 2:56
Rocky#20-Mar-07 2:56 
QuestionRe: I want to get the create query of existing table plz reply me Pin
jesusara20-Mar-07 2:20
jesusara20-Mar-07 2:20 
AnswerRe: I want to get the create query of existing table plz reply me Pin
joon vh.20-Mar-07 2:23
joon vh.20-Mar-07 2:23 
QuestionHow to assign Title Case Format for Label Pin
pashitech20-Mar-07 2:14
pashitech20-Mar-07 2:14 
AnswerRe: How to assign Title Case Format for Label Pin
joon vh.20-Mar-07 2:28
joon vh.20-Mar-07 2:28 
Look for the options of a regular string. I would do the following algo:
- split on every space into an array
- for every element in array, the most left character is made upper, and add it to another string


        static string CamelCase(string input)<br />
        {<br />
            string[] words = input.Split(' ');<br />
            string output = "";<br />
            foreach (string word in words)<br />
            {<br />
                output += word.Substring(0, 1).ToUpper() + word.Substring(1) + ' '; <br />
            }<br />
<br />
            return output;<br />
        }




Visual Studio can't evaluate this, can you?
public object moo<br />
        {<br />
__get { return moo; }<br />
__set { moo = value; }<br />
}

GeneralRe: How to assign Title Case Format for Label Pin
pashitech20-Mar-07 2:41
pashitech20-Mar-07 2:41 
GeneralRe: How to assign Title Case Format for Label Pin
Andrei Ungureanu20-Mar-07 2:55
Andrei Ungureanu20-Mar-07 2:55 
GeneralRe: How to assign Title Case Format for Label Pin
joon vh.20-Mar-07 2:56
joon vh.20-Mar-07 2:56 
GeneralRe: How to assign Title Case Format for Label Pin
Pualee20-Mar-07 3:47
Pualee20-Mar-07 3:47 
QuestionColumn sort in a ListView Pin
anderslundsgard20-Mar-07 2:11
anderslundsgard20-Mar-07 2:11 
AnswerRe: Column sort in a ListView Pin
dsl/fahk20-Mar-07 2:20
dsl/fahk20-Mar-07 2:20 
GeneralRe: Column sort in a ListView Pin
anderslundsgard20-Mar-07 2:51
anderslundsgard20-Mar-07 2:51 
GeneralRe: Column sort in a ListView Pin
anderslundsgard20-Mar-07 3:49
anderslundsgard20-Mar-07 3:49 
QuestionDatagrid view Pin
hiremath7120-Mar-07 1:58
hiremath7120-Mar-07 1:58 
AnswerRe: Datagrid view Pin
dsl/fahk20-Mar-07 2:17
dsl/fahk20-Mar-07 2:17 
AnswerRe: Datagrid view Pin
Rocky#20-Mar-07 2:31
Rocky#20-Mar-07 2:31 
GeneralRe: Datagrid view Pin
hiremath7120-Mar-07 5:00
hiremath7120-Mar-07 5:00 
Questionabout AJAX Pin
upadesh20-Mar-07 1:52
upadesh20-Mar-07 1:52 
AnswerRe: about AJAX Pin
Colin Angus Mackay20-Mar-07 2:03
Colin Angus Mackay20-Mar-07 2:03 
AnswerRe: about AJAX Pin
J4amieC20-Mar-07 2:04
J4amieC20-Mar-07 2:04 
AnswerRe: about AJAX Pin
Andrei Ungureanu20-Mar-07 3:03
Andrei Ungureanu20-Mar-07 3:03 
Questionabout .csv files Pin
upadesh20-Mar-07 1:44
upadesh20-Mar-07 1:44 

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.