What I would like to do is create a Refresh Button on Click Event that will not re-sort my records, but rather remain on the current record, so when it is refreshed the user does not have to go back and find the record they were working on. Any
ideas?
If pressing the Refresh Button is just a Refresh, and not a Requery, then you can include in the Click event:
Me.PreviousControl.SetFocus
If the focus was on a control of the current record just before the click, then the focus will return to that control.
Imb.