I have a form with 2 subforms. The first subform is used to update a detail file. The second subform has summary totals of the detail file. Whenever a record is added or changed in the first subform, I do a requery on the second subform to refresh the totals, and this works fine. However, if I try to do the requery on the second subform in the on delete event in the first form, then I get run-time error 3246 - "Operation not supported in transactions". The code in the on delete event looks like this:
Any ideas on what can be done to get the requery to work after a delete? I'm using Access 2003.
Thanks
Code:
Me.Parent!sfm_Dept.Form.Requery
Thanks