I am having trouble locating an Event that triggers when you delete the last record in a table.
Here is the problem:
I have a Form with two subForms (sfrm_Main and sfrm_Sum). When I change data or add a record on sfrm_Main I want (and it works) sfrm_Sum to update (requery).
I place the following code in
Form_AfterUpdate()
Form_AfterInsert()
Yeah!!!
But when I delete a record, nothing...
and I do not see a 'Form_OnDelete()???
and 'Form_Delete(Cancel As Integer)' doesn't seem to be called.
Does anyone know what Event triggers after a record is deleted???
Thank you,
Here is the problem:
I have a Form with two subForms (sfrm_Main and sfrm_Sum). When I change data or add a record on sfrm_Main I want (and it works) sfrm_Sum to update (requery).
I place the following code in
Form_AfterUpdate()
Form_AfterInsert()
Code:
Me.Parent!sfrm_Sum_.Requery
But when I delete a record, nothing...
and I do not see a 'Form_OnDelete()???
and 'Form_Delete(Cancel As Integer)' doesn't seem to be called.
Does anyone know what Event triggers after a record is deleted???
Thank you,