Synchronizing 2 forms

  • Thread starter Thread starter Guy Gilliland
  • Start date Start date
G

Guy Gilliland

I have created a form bound to a single table. I
have "dragged" another separate form (bound to another
table) onto the first form. The tables have defined
relationships.
How do I synchronize the second form based on the primary
key of the table related to the first form?

Here's what I mean
FormA based on TableA
FormB based on TableB
TableA relationship defined to TableB

FormB dragged onto FormA as subform
I want to synchronize subformB based on the primary key in
FormA (a control).
Thanks
Guy
 
Have you set the LinkMasterFields and LinkChildFields of the subform
control? That's really all you should have to do - just put the name of the
linking field(s) into these properties and that should do it.
 
Back
Top