My DB has (amongst others) two tables:
1. Centres - CentreID as primary key, and centre name a text field; and
2. Children: ChildID as primary key, and a Centre field referring to the CentreID above. It also has many other fields.
I am trying to create a form that will display a list box of all the children for a chosen centre. I basically want the user to be able to use a combo box to select a centre, and for the list box to automatically list all the children who belong to that centre.
I think that I know how to link the combo and list boxes, but I am a little confused here...
Is is possible to achieve this without a reference from the centres table to the children table, i.e. without creating a many-to-many table storing childID/centreID pairs?
I am sure this is trivial stuff for you Access experts, but despite pretty extensive programming experience I am a relational DB newbie, and sometimes just find it tricky to think in the right way.
Any help will be much appreciated.
1. Centres - CentreID as primary key, and centre name a text field; and
2. Children: ChildID as primary key, and a Centre field referring to the CentreID above. It also has many other fields.
I am trying to create a form that will display a list box of all the children for a chosen centre. I basically want the user to be able to use a combo box to select a centre, and for the list box to automatically list all the children who belong to that centre.
I think that I know how to link the combo and list boxes, but I am a little confused here...
Is is possible to achieve this without a reference from the centres table to the children table, i.e. without creating a many-to-many table storing childID/centreID pairs?
I am sure this is trivial stuff for you Access experts, but despite pretty extensive programming experience I am a relational DB newbie, and sometimes just find it tricky to think in the right way.
Any help will be much appreciated.