M
mattc66 via AccessMonster.com
What is wrong with my syntax? It says its not found.
Forms![frmGroup]!Form![sfrmCustGroup_C1].Requery
Forms![frmGroup]!Form![sfrmCustGroup_C1].Requery
Hi Matt,
the syntax for a subform on a form is like this:
Forms![frmGroup]![Name of subform control]!Form.Requery
John W. Vinson said:Hi Matt,
the syntax for a subform on a form is like this:
Forms![frmGroup]![Name of subform control]!Form.Requery
Almost... actually it should be
Forms![frmGroup]![Name of subform control].Form.Requery
The .Form is a property of the subform control - even though it's also an
object within that control.
John W. Vinson [MVP]