I have a winform with a "boPersons" Business object and table = persons. and a column= IDPerTitles. I populated the form with a combobox and configured it as follows1. PopulationDataSource = "BoPositionTitles", FillTop100().
2. Diaplay Member = {0}-RecordID,{1}-Description
3 Display Member Formate String = {0},{1}
ValueMember = RocordID which is the recordID of the BoPositionsTitles Business Object.
When I dropdown the combobox I can see the list of position titles. I can also select a title. However, when I return to the form, the combobox displays the first record in the BoPositionTitles object. It appears that the boPersons BO is not being populated with the recordId from the BoPositionTitles object upon saving??
Michael