
Originally Posted by
theosgood
...I’ve read that because I have a relationship, I can update multiple tables using one form...
This is true if each Form or Subform [B] is based on Data from a different Table.

Originally Posted by
theosgood
...the MOL record is created first with event as the PK. Then the AOL records are created using the event field as its PK...
Actually, 'event' should be the PK in the MOL Table; in the AOL Table it would be the Foreign Key. The AOL Table should have its own, distinct, PK.

Originally Posted by
theosgood
...On a single page form when you save the record the source table is updated for all fields on the form. I assume the same is true for tabbed forms. However, because my AOL tabs need to read the event value from the MOL, I need to save that portion of the form first.
In a Main Form/Subform scenario, Data is Saved automatically when moving from one component to another, i.e. when you move from the Main Form to a Subform, the Main Form data is Saved. When you move from a Subform to the Main Form or another Subform the first Subform data is Saved. And as I said, this is done automatically! No Command is needed. It's how Access works, by default!

Originally Posted by
theosgood
...The original database...MOL has 183 fields in 4 workable areas.
Most experienced developers are going to tell you that any Table that contains more than 35-40 Fields is almost assuredly non-normalized. Since you're trying to correct sins of the past, I think you really need look at the way your data is set up!

Originally Posted by
theosgood
..."Place subforms on tab control pages" - Are you saying that I should use a subform in the tab to group my fields instead of individual fields in the tab...
If you have Fields from your Main Table/Main Form on a Tabbed Control Page, they would go directly on the Page, and would be referenced, if necessary, as if they were simply on the Main Form.
The Fields from the related, AOL Table, would need to be on Subforms placed on Tabbed Pages, and would require a different syntax if they are to be referenced.
And 'yes,' you can 'mix 'n' match' on the Tabbed Control Pages! Some Pages can have Fields from the MOL Table and other Pages can hold Fields in Subforms, from the related Table.
Linq ;0)>
The problem with making anything foolproof...is that fools are so darn ingenious!
All posts/responses based on Access 2003/2007