yes, I would use continues forms in place of datasheets. You can see some
nice shots of grids, and several show a screen that syncs two forms as you
ask.
http://www.members.shaw.ca/AlbertKal...icles/Grid.htm
You don't mention how many "child" forms you plan to have, but lets assume
two.
So, you got the main form + two child forms you need to display.
So, I would built 3 grids using continues forms, or 3 forms in data sheet
view.
You then create a 4th form - unbound, and just a plain form...
Now drop in the above 3 forms.
In the master form (which is now a subform), in the on current event, you
place the following command to make the child forms follow this form.
me.Parent.Child1.Requery
me.Parent.Child2.Requery.
In the link child/master settings for child 1, you place:
linkChildFields main_id (whatever is the name of the field in
this sub-form that is used to relate back to the parent table)
LinkMasterFields [MasterForm].[form].[ID]
In the link child/master settings for child 2 form you place
linkChildFields main_id (whatever is the name of the field in
this sub-form that is used to relate back to the parent table)
LinkMasterFields [MasterForm].[form].[ID] ("masterForm" is the name of
the contorl you used to hold the master form).
You are done....
--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
(E-Mail Removed)
http://www.members.shaw.ca/AlbertKallal