How to go back to first record in recordset

C

ctdak

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.
 
D

Douglas J. Steele

Depending on what type of recordset you opened, you should be able to use
the MoveFirst method to go back to the beginning.
 
Top