I have a form with a couple comboboxes, which are bound to a particular datasource. The form itself is bound to a different databinding.
Problem: When one of the comboboxes has an item selected, all the comboboxes automatically switch to the selected value. I realize they are all part of the same databinding, so I made a new databinding for each one of them. Solved... or maybe not... What happens now is that when the position of form is changed, any changes made to individual comboboxes carry over to the next form.
Any suggestions for a potential solution? The only thing I can think of at this point is to do an SQL query to see if each combobox really has data bound to it, and if not, to set the combobox index to -1.
Problem: When one of the comboboxes has an item selected, all the comboboxes automatically switch to the selected value. I realize they are all part of the same databinding, so I made a new databinding for each one of them. Solved... or maybe not... What happens now is that when the position of form is changed, any changes made to individual comboboxes carry over to the next form.
Any suggestions for a potential solution? The only thing I can think of at this point is to do an SQL query to see if each combobox really has data bound to it, and if not, to set the combobox index to -1.