Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the Form there is combobox and textbox(cb was created by drag on Form from Data Source, tb separately by tools with binding source in properties. They have generic binding source. So when i switch something in cb, tb get his values. I need did cb with 2 column(double cb), i did this like this:

ComboBox1.DataSource = dbDataSet.cb1.AsEnumerable()
          .Select(row => new 
               { 
                 Text = String.Format("{0,5} | {1}", row["number"], row["name"]),
                 Value = row["id"]
               })
         .ToList();

ComboBox1.DisplayMember = "Text";
ComboBox1.ValueMember = "Value";

After this, when i switch something from list of cb, tb don't get values, he have still first value(when form loading, tb get value from first row of list cb, but dont get from next). I need did this, cause sql querry for add row in the table, have parameters with tb's(name + number), because i can't use combobox.Text(number + name in 1 column, i need in separate). Maybe somebody know a better way...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.