Hi I have two things I want to run in my BeforeUpdate of a form. First, I want to have a TimeStamp macro to run. Second, I want an Event Procedure that asks the user whether or not they want to save. I can't seem to have both. I select one in the property sheet under Before Update the other one doesn't run.
Is there a way to have both these running for a form?
I made the TimeStamp macro according to the Help in Access and my Save event looks like this:
Thanks
Is there a way to have both these running for a form?
I made the TimeStamp macro according to the Help in Access and my Save event looks like this:
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Resp = MsgBox("Do you wish to save the new/edited data?", vbYesNo + vbQuestion, "Unsaved Data")
If Resp = vbNo Then
Me.Undo
End If
End Sub
Thanks