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

C#

 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
ZurdoDev29-Apr-16 12:07
professionalZurdoDev29-Apr-16 12:07 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 12:21
wilcoten29-Apr-16 12:21 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
Brisingr Aerowing30-Apr-16 12:32
professionalBrisingr Aerowing30-Apr-16 12:32 
AnswerRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
OriginalGriff29-Apr-16 5:03
mveOriginalGriff29-Apr-16 5:03 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
Pete O'Hanlon29-Apr-16 7:42
mvePete O'Hanlon29-Apr-16 7:42 
QuestionI add table into Control dataSet of XtraReport ? Pin
Member 245846728-Apr-16 20:57
Member 245846728-Apr-16 20:57 
AnswerRe: I add table into Control dataSet of XtraReport ? Pin
Gerry Schmitz29-Apr-16 6:45
mveGerry Schmitz29-Apr-16 6:45 
AnswerRe: I add table into Control dataSet of XtraReport ? Pin
Eddy Vluggen29-Apr-16 6:47
professionalEddy Vluggen29-Apr-16 6:47 
AnswerRe: I add table into Control dataSet of XtraReport ? Pin
Marco Bertschi3-May-16 21:30
protectorMarco Bertschi3-May-16 21:30 
Questionwhat do you know the name of this control ? Pin
Member 245846728-Apr-16 20:37
Member 245846728-Apr-16 20:37 
AnswerRe: what do you know the name of this control ? Pin
Pete O'Hanlon28-Apr-16 23:42
mvePete O'Hanlon28-Apr-16 23:42 
QuestionSerializing a ResourceDictionary to binary and back Pin
Imagiv28-Apr-16 8:25
Imagiv28-Apr-16 8:25 
AnswerRe: Serializing a ResourceDictionary to binary and back Pin
Matt T Heffron28-Apr-16 14:48
professionalMatt T Heffron28-Apr-16 14:48 
GeneralRe: Serializing a ResourceDictionary to binary and back Pin
Imagiv28-Apr-16 15:39
Imagiv28-Apr-16 15:39 
QuestionIs it possible to read all probe response coming to a certain access point Pin
mohammed qaid28-Apr-16 7:31
mohammed qaid28-Apr-16 7:31 
Question[SOLVED] Drag and drop file explorer Pin
AndrewRue28-Apr-16 2:47
professionalAndrewRue28-Apr-16 2:47 
AnswerRe: Drag and drop file explorer Pin
OriginalGriff28-Apr-16 3:02
mveOriginalGriff28-Apr-16 3:02 
GeneralRe: Drag and drop file explorer Pin
AndrewRue28-Apr-16 3:11
professionalAndrewRue28-Apr-16 3:11 
GeneralRe: Drag and drop file explorer Pin
OriginalGriff28-Apr-16 3:26
mveOriginalGriff28-Apr-16 3:26 
GeneralRe: Drag and drop file explorer Pin
AndrewRue28-Apr-16 19:50
professionalAndrewRue28-Apr-16 19:50 
GeneralRe: Drag and drop file explorer Pin
OriginalGriff28-Apr-16 20:54
mveOriginalGriff28-Apr-16 20:54 
GeneralRe: Drag and drop file explorer Pin
AndrewRue28-Apr-16 21:27
professionalAndrewRue28-Apr-16 21:27 
GeneralRe: Drag and drop file explorer Pin
OriginalGriff28-Apr-16 22:44
mveOriginalGriff28-Apr-16 22:44 
QuestionShouldnt this work? Pin
David Reeves27-Apr-16 12:25
David Reeves27-Apr-16 12:25 
C#
foreach (DataRow dataRow in dt.Rows)
            {
                if (dataRow["Column1"].ToString().Contains(["ExampleString"])
                {
                    
                    listBox1.Items.Add(dataRow["Column1"] + " " + dataRow["Column2"] + "  " + dataRow["Column3"] + " " + dataRow["Column4"]);

                }
            }


//the above code works perfectly and returns only the rows containing the "ExampleString"


// if i try to use a SelectedText value from a combobox as a string to replace the "ExampleString", (as shown below),the listbox populates with ALL of the rows, not just the ones with the "ExampleString".  




string strFromCombobox = comboBox1.SelectedText;

foreach (DataRow dataRow in dt.Rows)
            {
                if (dataRow["Column1"].ToString().Contains(strFromCombobox)
                {
                    
                    listBox1.Items.Add(dataRow["Column1"] + " " + dataRow["Column2"] + "  " + dataRow["Column3"] + " " + dataRow["Column4"]);

                }
            }

AnswerRe: Shouldnt this work? Pin
Dave Kreskowiak27-Apr-16 13:54
mveDave Kreskowiak27-Apr-16 13:54 

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.