Click here to Skip to main content
15,888,984 members
Home / Discussions / C#
   

C#

 
Questionunderline just one word within a lable Pin
lane0p218-Aug-09 23:10
lane0p218-Aug-09 23:10 
AnswerRe: underline just one word within a lable Pin
Christian Graus18-Aug-09 23:21
protectorChristian Graus18-Aug-09 23:21 
AnswerRe: underline just one word within a lable Pin
N a v a n e e t h18-Aug-09 23:31
N a v a n e e t h18-Aug-09 23:31 
GeneralRe: underline just one word within a lable Pin
lane0p218-Aug-09 23:47
lane0p218-Aug-09 23:47 
GeneralRe: underline just one word within a lable Pin
lane0p220-Aug-09 3:54
lane0p220-Aug-09 3:54 
QuestionSortList problem Pin
bonzaiholding18-Aug-09 22:35
bonzaiholding18-Aug-09 22:35 
AnswerRe: SortList problem , please help! Pin
N a v a n e e t h18-Aug-09 23:16
N a v a n e e t h18-Aug-09 23:16 
GeneralRe: SortList problem , please help! Pin
bonzaiholding19-Aug-09 0:00
bonzaiholding19-Aug-09 0:00 
Thanks.
I tryed some other methods but in the end i just use this function :

private void InsertThisStudent(Student std, List<Student> List)
     {

         for (int i = 0; i < List.Count; i++)
         {
             if (std.CompareTo(List[i]) < 0)
             {
                 List.Insert(i, std);
                 return;
             }
         }
         //If this is the last one
         List.Add(std);
     }


thanks Smile | :)
QuestionCommand Line Option in C# Pin
maheesh18-Aug-09 22:32
maheesh18-Aug-09 22:32 
AnswerRe: Command Line Option in C# Pin
N a v a n e e t h18-Aug-09 23:04
N a v a n e e t h18-Aug-09 23:04 
GeneralRe: Command Line Option in C# Pin
maheesh18-Aug-09 23:49
maheesh18-Aug-09 23:49 
AnswerRe: Command Line Option in C# Pin
Calla18-Aug-09 23:10
Calla18-Aug-09 23:10 
GeneralRe: Command Line Option in C# Pin
maheesh19-Aug-09 0:16
maheesh19-Aug-09 0:16 
GeneralRe: Command Line Option in C# Pin
Calla19-Aug-09 0:23
Calla19-Aug-09 0:23 
QuestionCustom Control Events Pin
Matt Cavanagh18-Aug-09 22:30
Matt Cavanagh18-Aug-09 22:30 
AnswerRe: Custom Control Events Pin
dan!sh 18-Aug-09 22:54
professional dan!sh 18-Aug-09 22:54 
GeneralRe: Custom Control Events Pin
Matt Cavanagh18-Aug-09 22:57
Matt Cavanagh18-Aug-09 22:57 
GeneralRe: Custom Control Events Pin
dan!sh 18-Aug-09 23:17
professional dan!sh 18-Aug-09 23:17 
Questionvalidations for the controls that are dynamically created at runtime Pin
vasavi.p18-Aug-09 22:16
vasavi.p18-Aug-09 22:16 
AnswerRe: validations for the controls that are dynamically created at runtime Pin
OriginalGriff18-Aug-09 22:25
mveOriginalGriff18-Aug-09 22:25 
AnswerRe: validations for the controls that are dynamically created at runtime [modified] Pin
annathor18-Aug-09 22:46
annathor18-Aug-09 22:46 
QuestionWeb Application Security Pin
kKamel18-Aug-09 21:45
kKamel18-Aug-09 21:45 
AnswerRe: Web Application Security Pin
N a v a n e e t h18-Aug-09 22:08
N a v a n e e t h18-Aug-09 22:08 
GeneralRe: Web Application Security Pin
kKamel18-Aug-09 22:21
kKamel18-Aug-09 22:21 
Questiondon't allow to leave cell in datagridview Pin
mahdi198418-Aug-09 21:21
mahdi198418-Aug-09 21:21 

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.