B
Bob Howard
The second subform is unaware of the change to the underlying data and
requires that you perform a requery --- this can be executed in the form (or
subform) where the data is being changed as that form (or subform) is the
one aware that the requery is needed. Don't simply execute me.requery
however --- you'll need to point to the subform whose underlying
recordsource requires the requery. If the data change is made in the main
form, you can code something like me.[subform control name].form.requery.
If the data change is made in the other subform, you can code something like
me.parent.[subform control name].form.requery.
requires that you perform a requery --- this can be executed in the form (or
subform) where the data is being changed as that form (or subform) is the
one aware that the requery is needed. Don't simply execute me.requery
however --- you'll need to point to the subform whose underlying
recordsource requires the requery. If the data change is made in the main
form, you can code something like me.[subform control name].form.requery.
If the data change is made in the other subform, you can code something like
me.parent.[subform control name].form.requery.