Forcing a subform requery

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In Access 2002, I have a bound subform that I need to force a requery on from
the parent. How can I do that please?

Thanks a million!
 
Me.NameOfSubform.Requery

where NameOfSubform is the name of the subform control (the main form's
control that holds the subform object).
 
Shouldn't that be Me.NameOfSubformControl.Requery (or, more correctly,
Me.NameOfSubformControl.Form.Requery)?

Depending on how the form was added as a subform, the name of the subform
control on the parent form may not be the same as the name of the form being
used as the subform.
 
Back
Top