Posted 28 February 2019, 10:32 am EST
Having an odd issue with the C1FlexGrid. I have a strongly typed dataset that I am binding to the C1FlexGrid. It displays data fine and allows users to edit the data. I am using the AfterEdit method to try to write the changes back to the database using this code:
Private Sub fgDocuments_AfterEdit(sender As Object, e As RowColEventArgs) Handles fgDocuments.AfterEdit Dim DocumentsAdapter As New CompanyDataTableAdapters.CustomerDocumentsTableAdapter DocumentsAdapter.Connection.ConnectionString = ConnStr DocumentsAdapter.Update(fgDocuments.DataSource) End Sub
The code executes without error but does NOT write any changes back to the database. The Adapter has all relevant commands. the DataAdapter.Update method seems to do absolutely nothing. Any suggestions?