Does anyone know of any data binding objects other than the Microsoft Data Binding collection, the ADO data control, or the Data control that comes with VB?
My problem thus far is that the data source for all of these technologies is only updated whenever the user moves off the current record or one of the form controls loses focus.
If the user requests an on demand save from the form menu or exits the application, none of these things will occur and the data source does not get updated with the changes. Also, these data binding methods do not provide a way to explicitly move the data from the form controls to the data source.
Now, I could write code to move the data from each form control to the data source but that defeats the whole purpose of data binding.
Thanks for any suggestions!
My problem thus far is that the data source for all of these technologies is only updated whenever the user moves off the current record or one of the form controls loses focus.
If the user requests an on demand save from the form menu or exits the application, none of these things will occur and the data source does not get updated with the changes. Also, these data binding methods do not provide a way to explicitly move the data from the form controls to the data source.
Now, I could write code to move the data from each form control to the data source but that defeats the whole purpose of data binding.
Thanks for any suggestions!