I have 2 DropDownList ComboBoxes on a Windows Form, both populated from the same DataSet (a staff list), but they serve different purposes (project manager/reviewer).
If I set the DataSource for both of them to the DataSet, they are both bound to the DataSet and change in tandem.
Am I missing something, or will I have to read the rows and columns of the data set into the Items collection programmatically instead of using the DataSet directly?
Or replicate the DataSet?
On another form, I have the same problem several times.