I am trying to delete a recordset in ACCESS 2000 using the ADODC component in VB 6.0.
I first began by coding: adodc.recordset.delete
This allowed me to delete the record, but when I attempt to navigate through the recordset AFTER deleting I get an error stating that a "row handle is marked for deletion."
So then I coded: adodc.recordset.delete
adodc.recordset.refresh
Again, the record is deleted, but when I attempt to navigate the recordset I receive the error "operation was canceled."
I have tried several combinations for changing the lock attributes and using refresh, requery, or neither, but cannot seem to get around these errors...Any ideas? Does anyone out there know what I am missing here ??
I first began by coding: adodc.recordset.delete
This allowed me to delete the record, but when I attempt to navigate through the recordset AFTER deleting I get an error stating that a "row handle is marked for deletion."
So then I coded: adodc.recordset.delete
adodc.recordset.refresh
Again, the record is deleted, but when I attempt to navigate the recordset I receive the error "operation was canceled."
I have tried several combinations for changing the lock attributes and using refresh, requery, or neither, but cannot seem to get around these errors...Any ideas? Does anyone out there know what I am missing here ??