I have this code:
Dim cb As OleDb.OleDbCommandBuilder
Try
cb = New OleDb.OleDbCommandBuilder(daDocuments)
daDocuments.Update(CType(bdsDocuments.DataSource, DataTable))
MessageBox.Show("The data load has finished...", "DBF Load")
Catch ex As Exception
MessageBox.Show("1.- " + ex.Message)
End Try
but, the OleDbCommandBuilder don't create the updatecommand and hence it doesn't work... any ideas?