jmstarbuck
Programmer
HI all,
I want to popup a message box anytime a field is edited on a form after that record has already been reported (I know this from looking at another field on the form). I'm trying to use the Form's AfterUpdate event but it doesn't fire on every field, so I am confused.
Here's what I have:
I don't want to block the edit and I would surely like to avoid linking code to every field's afterupdate event.
Does anyone have a recommendation?
Janice
I want to popup a message box anytime a field is edited on a form after that record has already been reported (I know this from looking at another field on the form). I'm trying to use the Form's AfterUpdate event but it doesn't fire on every field, so I am confused.
Here's what I have:
Code:
Private Sub Form_AfterUpdate()
If Me.CDAReportStatus = "A" Then
MsgBox "This job has already been reported ...."
End If
End Sub
Does anyone have a recommendation?
Janice