Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
The reason you are having an issue is because the standard SF data binding has already taken place, so I assume that you are just setting the BindingField and BindingBusinessOBject properties after the form has already loaded. If you want to do this, you need to override the OnLoad method of the form and before you call the MyBase.OnLoad() method, set all of your binding logic. This is also assuming that you want to use SF data binding. The second option is to manually create a binding and bind the control to the SF BO property. Either way will work, but you are fighting instantiation order at the moment.
|