Click here to Skip to main content
15,921,382 members
Home / Discussions / C#
   

C#

 
AnswerRe: i need a very simple chat application Pin
OriginalGriff25-Jun-10 2:46
mveOriginalGriff25-Jun-10 2:46 
GeneralRe: i need a very simple chat application Pin
Luc Pattyn25-Jun-10 3:12
sitebuilderLuc Pattyn25-Jun-10 3:12 
GeneralRe: i need a very simple chat application Pin
OriginalGriff25-Jun-10 3:18
mveOriginalGriff25-Jun-10 3:18 
GeneralRe: i need a very simple chat application Pin
Luc Pattyn25-Jun-10 3:37
sitebuilderLuc Pattyn25-Jun-10 3:37 
AnswerRe: i need a very simple chat application Pin
Richard MacCutchan25-Jun-10 2:49
mveRichard MacCutchan25-Jun-10 2:49 
AnswerRe: i need a very simple chat application Pin
PIEBALDconsult25-Jun-10 4:03
mvePIEBALDconsult25-Jun-10 4:03 
AnswerRe: i need a very simple chat application Pin
Blue_Boy25-Jun-10 12:36
Blue_Boy25-Jun-10 12:36 
QuestionNot all code paths return a value Pin
Nikhil Bhivgade25-Jun-10 1:50
professionalNikhil Bhivgade25-Jun-10 1:50 
public Boolean  valid()
        {
            for (int i=0; i < cmbSampleName.Items.Count; i++)
            {
                
                if (txtSampleName.Text == cmbSampleName.Items[i].ToString())
                {
                    return true;
                    break;
                }
                else
                {
                    return false;
                    
                }
            }

        }

i want to check weather the current text in textbox is present in combobox or not
plz help
AnswerRe: Not all code paths return a value PinPopular
harold aptroot25-Jun-10 1:57
harold aptroot25-Jun-10 1:57 
AnswerRe: Not all code paths return a value Pin
riced25-Jun-10 1:58
riced25-Jun-10 1:58 
GeneralRe: Not all code paths return a value Pin
Pete O'Hanlon25-Jun-10 2:04
mvePete O'Hanlon25-Jun-10 2:04 
GeneralRe: Not all code paths return a value Pin
riced25-Jun-10 2:15
riced25-Jun-10 2:15 
GeneralRe: Not all code paths return a value Pin
Anthony Mushrow25-Jun-10 13:13
professionalAnthony Mushrow25-Jun-10 13:13 
GeneralRe: Not all code paths return a value Pin
Pete O'Hanlon25-Jun-10 13:23
mvePete O'Hanlon25-Jun-10 13:23 
AnswerRe: Not all code paths return a value Pin
Pete O'Hanlon25-Jun-10 2:03
mvePete O'Hanlon25-Jun-10 2:03 
AnswerRe: Not all code paths return a value Pin
OriginalGriff25-Jun-10 2:48
mveOriginalGriff25-Jun-10 2:48 
GeneralRe: Not all code paths return a value Pin
freakyit25-Jun-10 3:14
freakyit25-Jun-10 3:14 
GeneralRe: Not all code paths return a value Pin
OriginalGriff25-Jun-10 3:26
mveOriginalGriff25-Jun-10 3:26 
GeneralRe: Not all code paths return a value Pin
Luc Pattyn25-Jun-10 3:39
sitebuilderLuc Pattyn25-Jun-10 3:39 
GeneralRe: Not all code paths return a value Pin
Pete O'Hanlon25-Jun-10 3:45
mvePete O'Hanlon25-Jun-10 3:45 
GeneralRe: Not all code paths return a value Pin
Luc Pattyn25-Jun-10 4:06
sitebuilderLuc Pattyn25-Jun-10 4:06 
GeneralRe: Not all code paths return a value Pin
harold aptroot25-Jun-10 3:18
harold aptroot25-Jun-10 3:18 
GeneralRe: Not all code paths return a value Pin
freakyit25-Jun-10 3:26
freakyit25-Jun-10 3:26 
AnswerRe: Not all code paths return a value Pin
harold aptroot26-Jun-10 0:56
harold aptroot26-Jun-10 0:56 
AnswerRe: Not all code paths return a value Pin
yu-jian26-Jun-10 7:47
yu-jian26-Jun-10 7:47 

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.