How to go back to first record in recordset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This may be a dumb question, but other than closing and reopening a
resordset, is there a way to get Access to point to the first record again?
My code is adding records to a temporary recordset, but I have a test that
only works when it is looking at the first record.
 
Depending on what type of recordset you opened, you should be able to use
the MoveFirst method to go back to the beginning.
 
Back
Top