Hi,
If you just want to check whether your record got saved or not, try using the code below ( I have assumed id to be the primary key ):
Private Sub CheckSave_Click()
Dim db as DAO.Database
Dim rs as DAO.Recordset
Set db=CurrentDB
Set rs=db.OpenRecordset("Select * from YourTable where id=" & Val(Me.txtId), dbOpenDynaset)
If rs.recordcount > 0 then
Msgbox "Saved Successfully"
Else
Msgbox "Record lost"
End If
rs.Close
db.Close
End Sub Hope it helps. Let me know what happens.
With regards,
PGK