Try this: forms!customers!billsopenvalue.requery

Signature
Maurice Ausum
> I have a main form called “customers”
> I have a subform in the “customers” form called "billsopenvalue"
[quoted text clipped - 10 lines]
> Thank you very much in advance
> Klaus
Amateur - 17 May 2007 19:26 GMT
I tried now in the AfterUpdate Event procedure for the field paymentamount in
the form receivedpayments :
Private Sub Form_AfterUpdate ()
DoCmd.Requery Forms!customers!billsopenvalue
End Sub
and
Private Sub Form_AfterUpdate ()
DoCmd Forms!customers!billsopenvalue.requery
End Sub
and
Private Sub Form_AfterUpdate ()
Forms!customers!billsopenvalue.requery
End Sub
Is not working but I think I have somehow as well to mention the fieldname
which should be updated or not? The field name would be form "customers",
subform "billsopenvalue", fieldname "resting" .
Do you have any other idea?
Thanks
Klaus
> Try this: forms!customers!billsopenvalue.requery
>
[quoted text clipped - 12 lines]
> > Thank you very much in advance
> > Klaus