It's a simple reminder message and does not require any input, nor does it
rely on data in any other field on the form.
"Verify calibration equipment has been added to database!" Then the form
closes after this appears.
Thanks in advance for your assistance.
If the user doesn't have to confirm the update, it makes sense to put such a
message in the form's AfterUpdate event:
Private Sub Form_AfterUpdate()
MsgBox ""Verify calibration equipment has been added to database!"
End Sub
The message will be displayed any time a record is saved, regardless of
whether the save occurred because the user moved to a new record or because
they closed the form. It will not be displayed if nothing on the form was
modified (by the user or by your code) so that no record will be updated or
added.
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)
MsgBox "Verify calibration equipment has been added to database!", vbOKOnly
DoCmd.Close
__________________________________