R
robeito
Hello everybody!!
I have myForm with sfrm1 and sfrm2 embedded (both are in datasheet view)
sfrm1 let me edit, insert and delete records in tbl_1
sfrm2 is read only and shows totals of tbl_1 grouped by different concepts
I want to show the totals updated in sfrm2, I have problems deleting rows in
sfrm1 because the following code in sfrm1 does nothing:
Private Sub Form_Delete(Cancel As Integer)
Forms("myForm").sfrm2.Requery
End Sub
and the following raises "This operation is not supported within transactions"
Private Sub Form_Delete(Cancel As Integer)
Forms("myForm").sfrm2.form.Requery
End Sub
any ideas?
I have myForm with sfrm1 and sfrm2 embedded (both are in datasheet view)
sfrm1 let me edit, insert and delete records in tbl_1
sfrm2 is read only and shows totals of tbl_1 grouped by different concepts
I want to show the totals updated in sfrm2, I have problems deleting rows in
sfrm1 because the following code in sfrm1 does nothing:
Private Sub Form_Delete(Cancel As Integer)
Forms("myForm").sfrm2.Requery
End Sub
and the following raises "This operation is not supported within transactions"
Private Sub Form_Delete(Cancel As Integer)
Forms("myForm").sfrm2.form.Requery
End Sub
any ideas?