Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
AnswerRe: how i can create a mobile application in C#? Pin
Not Active8-Sep-06 4:01
mentorNot Active8-Sep-06 4:01 
Questionlist of computers in a network Pin
saqib828-Sep-06 1:52
saqib828-Sep-06 1:52 
AnswerRe: list of computers in a network Pin
Judah Gabriel Himango8-Sep-06 5:09
sponsorJudah Gabriel Himango8-Sep-06 5:09 
AnswerRe: list of computers in a network Pin
samtam8-Sep-06 19:39
samtam8-Sep-06 19:39 
QuestionHow to Change the string to Upper Casing Pin
zxc898-Sep-06 1:28
zxc898-Sep-06 1:28 
AnswerRe: How to Change the string to Upper Casing Pin
Sebastian Schneider8-Sep-06 2:39
Sebastian Schneider8-Sep-06 2:39 
GeneralRe: How to Change the string to Upper Casing Pin
zxc898-Sep-06 3:28
zxc898-Sep-06 3:28 
GeneralRe: How to Change the string to Upper Casing Pin
Alex@UEA8-Sep-06 4:08
Alex@UEA8-Sep-06 4:08 
not elegant but...

private static String mixCase(string inString)
  {
    String outString = inString.Substring(0, 1).ToUpper();
    inString = inString.Substring(1).ToLower();
    String lastChar = "";
    for (int iIndex = 0; iIndex < inString.Length; iIndex++)
      {
        if (iIndex > 1)
          {
            lastChar = inString.Substring(iIndex - 1, 1);
          }
        if (lastChar.Equals("_"))
          {
            outString = outString.Substring(0, outString.Length - 1);
            outString += inString.Substring(iIndex, 1).ToUpper();
          }
       else
          {
            outString += inString.Substring(iIndex, 1);
          }
      }
    return outString;
  }

GeneralRe: How to Change the string to Upper Casing Pin
zxc898-Sep-06 4:27
zxc898-Sep-06 4:27 
AnswerRe: How to Change the string to Upper Casing Pin
User 66588-Sep-06 2:42
User 66588-Sep-06 2:42 
AnswerRe: How to Change the string to Upper Casing Pin
eggsovereasy8-Sep-06 3:33
eggsovereasy8-Sep-06 3:33 
AnswerRe: How to Change the string to Upper Casing Pin
Guffa8-Sep-06 4:22
Guffa8-Sep-06 4:22 
Questioncrystal reports in C# Pin
yousafzai8-Sep-06 1:10
yousafzai8-Sep-06 1:10 
Questionhow to add event over a control at runtime Pin
shaz jazz8-Sep-06 0:56
shaz jazz8-Sep-06 0:56 
AnswerRe: how to add event over a control at runtime Pin
J4amieC8-Sep-06 1:10
J4amieC8-Sep-06 1:10 
AnswerRe: how to add event over a control at runtime Pin
ejuanpp8-Sep-06 1:27
ejuanpp8-Sep-06 1:27 
AnswerRe: how to add event over a control at runtime Pin
Sebastian Schneider8-Sep-06 2:48
Sebastian Schneider8-Sep-06 2:48 
QuestionVS Tools for Office Pin
Michael A. Barnhart8-Sep-06 0:45
Michael A. Barnhart8-Sep-06 0:45 
QuestionComboBox MouseDoubleClick Pin
johnrc8-Sep-06 0:13
johnrc8-Sep-06 0:13 
AnswerRe: ComboBox MouseDoubleClick Pin
johnrc9-Sep-06 17:26
johnrc9-Sep-06 17:26 
QuestionError in .net remoting!! Pin
samtam8-Sep-06 0:06
samtam8-Sep-06 0:06 
AnswerRe: Error in .net remoting!! Pin
Not Active8-Sep-06 2:21
mentorNot Active8-Sep-06 2:21 
Questionhow can i read Node from xml file using XmlNodeReader Pin
premkamalg8-Sep-06 0:04
premkamalg8-Sep-06 0:04 
AnswerRe: how can i read Node from xml file using XmlNodeReader Pin
Not Active8-Sep-06 2:10
mentorNot Active8-Sep-06 2:10 
QuestionSlowish visiualisation with winform Pin
BadKarma7-Sep-06 23:49
BadKarma7-Sep-06 23:49 

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.