|
-
Dec 13th, 2002, 11:58 PM
#1
Thread Starter
Hyperactive Member
Deleting of record
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|