|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 7K
|
Well at this point it is all about inheritance and reusability. You cannot make a BD totally generic, the core of a BD is the type of BO that is assigned to the control. If you try type the BO as a BusinessLayer and then expect the SearchFields, etc. to work, it won't. All subsequent properties touch the type of the BO that is assigned to the BrowseDialog. You can see a sample of classes a BD in the CRM Sample Application. We take a somewhat different approach in our medical system since we have a code field that goes along with the browse. All of our BrowseDialogs reside on a user control which encapsulates the BO that is used and then uses the BOTranslations of the user control to expose the settings to the form on which the control which houses the BD is dropped.
|