
Deleting records from a recordset without deleting from the database
Chris,
You've got two options: 1) Recreate the recordset with a new query that
removes the record. or 2) Create a new recordset based on the original
using the Filter property. The filter works much like a query but acts on
an existing recordset. I don't know of a way to do this without creating a
new recordset. Maybe someone has a better solution. Hope this helps.
Oscar Bowyer
Quote:
> How do I delete a record from a recordset without deleting the record
from
> the underlying database?