Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Actually, the designer file for the MustInherit object will be used. So, if there are properties in that designer file, then they will appear on all downstream objects. Also, any configuration changes to make within the component designer will affect all downstream objects (unless you override them downstream) because the InitializeComponent() method within the MustInherit object will be called, just like all the others. So, your best bet is probably going to be to just leave the business object unconfigured and ignore the warning. Or map the business object to a DDT profile table that doesn't have any fields, then you won't have to worry about the fields showing up in inherited objects.
|