
MOVELAST Fail after deleting the last record in a ADO recordset
When deleting the last record in a ADO recordset (Im executing in versions
1.5 and 2.0) the MoveLast method I found this error:
BOF or EOF or I`m in a deleted record.
This is true when Im in the deleted record but if I make the next samples i
found again the error:
therecordset.MoveFirst
therecordset.MoveLast => ERROR
or
therecordset.bookmark=<valid bookmark>
therecordset.MoveLast => ERROR
One solution is make therecordset.Requery, but I need this method because I
need working with the same recordset.
Thanks in advance.