Dim pos As Integer = Me.BindingContext(DataSet11, "Employee").Position
Dim row As DataRow = DataSet11.Employee.Rows(pos)
DataSet11.Employee.RemoveEmployeeRow(row)
OleDbDataAdapter1.Update(DataSet11)
DataSet11.AcceptChanges()
The code is correct. But the problem is, when I load the form again, the records I deleted are still there?
Any solution to this problem?
