I'm frustrated that I cannot set the DatasourceKey for the population business object, and that I cannot find any examples for manually populating a business object. All the documentation says to 'search for combobox population', and a vague reference to needing a datatable but no specifics for required fields. Which seems odd since you populate a combobox with objects not datatables, or is there some interface the combobox items needs to support?
Jason Jason Seidell
Programmer/Analyst
Infinedi
Thus far I have set the datasource key in code after creating a business object or from the property box when adding an instance of a business object to a form, before I call any fill methods.
For example:
Dim myBusinessObjectA as New ProcessingDB.BusinessObjectA
myBusinessObjectA.DatasourceKey = ProcessingDBDatasourceKey
myBusinessObjectA.FillAll()
Instead, I should alter the Business Object class and set the DatasourceKey so all instances of BusinessObjectA will use the datasource key and not have to intialize that property. Am I getting this right??