|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You'll have to do a "public void FillDTAllCategories()" and inside that method you'll need to call this.FillDataTable() on the business object. When you try to populate a combo using the business object, you need to use a method that will actually populate the business object, not just return a DataTable.
As for the method not showing up, make sure that the namespaces within the designer file matches the namespace within the business object's main code file... If it doesn't you'll have two business objects in two different namespaces, and the type editor for the PopulationDataSourceSettings will only add one to the list.
|