After Confirm Delete

  • Thread starter Thread starter Allie
  • Start date Start date
A

Allie

Hi

I have a main form and a sub form. Items added to the sub
form are totaled on the main form.

Problem: if an item is deleted from the subform the totals
on the main form remain unchanged.

How do I change the totals on the main form?

Thanks
 
Allie said:
Hi

I have a main form and a sub form. Items added to the sub
form are totaled on the main form.

Problem: if an item is deleted from the subform the totals
on the main form remain unchanged.

How do I change the totals on the main form?

Thanks

That would depend on how the totals on the main form are calculated. If
it's by calculated controls, you may need to execute

Me.Parent.Recalc

from the subform.
 
Back
Top