Bookmarks

  • Thread starter Thread starter Ron Hinds
  • Start date Start date
R

Ron Hinds

How do I save the postion a user is on when a record is deleted from a
Detail section? Here's the problem: if the Detail section has a large number
of records, and the user has scrolled through a large portion of them, then
deletes a record, they are put back at the beginning record. This causes
them to have to scroll through all the records again to find where they
were.
 
I don't think that's the default behavior when deleting a record in a form.
Are you executing a Requery or something?

If you do need to return to the same place after a Requery, you save the
primary key value of the record you want to show, requery, and FindFirst in
the RecordsetClone of the form.
 
Back
Top