Hello all,
I have a bound DataGridView, displaying some columns relevant to the user, which I use to scroll up and down to display more detailed data in another area of the form relating to the row selected in the DataGridView. This works ok, except for a ComboBox on the form.
The Combo can be populated, or not, depending on what the user wants to do with it. At the moment, the Combo can display either of two items, "ERROR" or "ADJUST" - though this will be added to at a later stage.
What I'm finding is that if one record is set to "ERROR", when I scroll up/down in the DataGridView, every record relating to the selected row displays "ERROR" - even if the record shouldn't have anything in the Combo.
If I update a different record, and make the contents of the Combo "ADJUST", "ADJUST" is displayed on each record until it encounters an "ERROR", at which point any record which shouldn't have anything in the Combo displays "ERROR". If I scroll back through an "ADJUST", everything which shouldn't have anything in the Combo displays "ADJUST".
What am I doing wrong?
