I am trying to make a form in design view to enter data into a transactions table. I have the following set of tables with these relationships:
<EquipmentTypeTable>
[EquipmentTypeID] PK
[EquipmentTypeName]
<EquipmentTable>
[EquipmentID] PK
[EquipmentName]
[EquipmentTypeID] FK
<TransactionsTable>
[TransactionID] PK
[EquipmentID] FK
I would like to use a form to insert data into this table. I already have it so that whatever I send to a bunch of text boxes can be added as a new record to the TransactionsTable, but I can't figure out how to get a first list box to pick a EquipmentType, then using that EquipmentType Value look through the EquipmentTable and only display the equipment that is of that type.
Please no Visual Basic response, it means nothing to me at the moment..
Ideally I would like to use a query in the "Row Source" field of the properties table for the second Listbox, and use a where clause saying that the EquipmentTypeID must equal that which is currently selected in the first Listbox.
<EquipmentTypeTable>
[EquipmentTypeID] PK
[EquipmentTypeName]
<EquipmentTable>
[EquipmentID] PK
[EquipmentName]
[EquipmentTypeID] FK
<TransactionsTable>
[TransactionID] PK
[EquipmentID] FK
I would like to use a form to insert data into this table. I already have it so that whatever I send to a bunch of text boxes can be added as a new record to the TransactionsTable, but I can't figure out how to get a first list box to pick a EquipmentType, then using that EquipmentType Value look through the EquipmentTable and only display the equipment that is of that type.
Please no Visual Basic response, it means nothing to me at the moment..
Ideally I would like to use a query in the "Row Source" field of the properties table for the second Listbox, and use a where clause saying that the EquipmentTypeID must equal that which is currently selected in the first Listbox.