You'll have to write some code. Create a button on the form and change the lable to "Refresh". Add code to the click event
The code (not debugged) looks like this:
Dim ID as int 'or whatever datatype your key is
Dim rs as Object
'save the current id
ID = Me.IDField 'or whatever your key is called
'refresh the form
Me.requery
'find the record
Set rs = Me.Recordset.Clone
rs.FindFirst "[IDFIeld] = " & ID
'move to the record
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
Hope this helps,
Kathi