I would like to navigate through the records of a continuous form in Access 97. I don't find how to do it. This is what I tried:
Me.RecordSetClone.MoveFirst
moves to the first record logically, but not in the UI. Also the CurrentRecord
property does not change.
I cannot set the CurrentRecord
property, it is readonly. Me.CurrentRecord = 1
gives an error.
DoCmd.GoToRecord Record:=acFirst
seems to have no effect.
What is the correct way to move to the first record in a continuous form (and to the next/previous)?