Subform Order

  • Thread starter Thread starter Chaplain Doug
  • Start date Start date
C

Chaplain Doug

I have two subforms on a tab control in my main form. One
subform needs to reference a control on the other
subform. However, when it tries to reference it (Forms!
[Select Male Participant Records]!CYCLENO) it cannot find
it. Is there a way to ensure that one of the subforms is
opened before the other to ensure that the data needed is
there to be referenced? Or is there a better way to do
this? Thanks.
 
The syntax of your reference is not correct! Try:

Forms!NameOfMainForm!NameOfSubformControl.Form!NameOfControl
 
Back
Top