G
Guest
Hi all,
I just need to notify the user that the record displayed in the continuous
subform has been saved. To do this, I've written this procedures:
Private Sub Form_AfterInsert()
MsgBox "new detail saved"
End Sub
Private Sub Form_AfterUpdate()
MsgBox "change saved"
End Sub
While the afterinsert event always occurs and I see the msgbox, the
ufterupdate event is not triggered. If I modify a record and then click on
another row, the previous record is saved and I should see the msgbox, but
nothing happens.
Does anybody have an idea of what could be wrong?
many thanks
Massimo
I just need to notify the user that the record displayed in the continuous
subform has been saved. To do this, I've written this procedures:
Private Sub Form_AfterInsert()
MsgBox "new detail saved"
End Sub
Private Sub Form_AfterUpdate()
MsgBox "change saved"
End Sub
While the afterinsert event always occurs and I see the msgbox, the
ufterupdate event is not triggered. If I modify a record and then click on
another row, the previous record is saved and I should see the msgbox, but
nothing happens.
Does anybody have an idea of what could be wrong?
many thanks
Massimo