update the recordset after deleting records
Suppose I have a recordset called rsDelete which is used to delete records in another recordset called rs.
How can I update (refresh) rs to show the status that some records in it are deleted ?
When I used rsDelete.delete to delete records in rs , I found out that those records still in rs!!!
Is there any method in ADO that is similar to rs.Refresh ?
Please teach me
Re: update the recordset after deleting records
You can use the Resync Method of the recordset.
Tom Cannaerts
[email protected]
The best way to escape a problem, is to solve it.