This is an example of a time tracking DB I'm building. This is the problem, after a record gets created it wont display after closing/reopening the form. There is probley a simple explanation. Thx in advance for any help.
This is on an [event procedure] of a button so the user can refresh any time they want.
Code:
Private Sub btnRefresh_Click()
On Error GoTo Err_btnRefresh_Click
DoCmd.Requery
Exit_btnRefresh_Click:
Exit Sub
Err_btnRefresh_Click:
MsgBox Err.Description
Resume Exit_btnRefresh_Click
End Sub
But really all you need is this
Code:
DoCmd.Requery
hope that helps. Let me know if you need more info.