mtagliaferri
Registered User.
- Local time
- Today, 19:59
- Joined
- Jul 16, 2006
- Messages
- 538
I need to refresh a form after I added a new record from a popup form, I am aware of the requery function but I am struggling to put it in place; I believe I should ad a line on save comand which closed the popup form.
the code is:
Any suggestions?
the code is:
Code:
Private Sub CmdSave_Click()
On Error GoTo Err_CmdSave_Click
DoCmd.Close
Exit_CmdSave_Click:
Exit Sub
Err_CmdSave_Click:
MsgBox Err.Description
Resume Exit_CmdSave_Click
End Sub
Any suggestions?