Cascading Comboboxes
Odds are, you use comboboxes for data entry on forms. Maybe even multiple comboboxes. There are times when a selected value in one fields should limit the available options in another field. But if you've just bound the combobox to a field in a table, the user can select a value in subsequent comboboxes.
Let's say you have a one-to-many relationship between two table, and that second table has the same relationship with a third table
Now let's say you have a unbound single main form (no subforms) with comboboxes with a main field for all three tables. Nothing would stop you from selecting unrelated items in each combobox. What you want to be able to do is to create cascading comboboxes, i.e. selecting an item in a higher level combobox filters the available items in the combobox level below it.
The easiest example is the selection of Countries, States and Cities. If you select Brazil as the country, you shouldn't be able to select Rhineland-Palatinate as the state and Beijing as the city. These fields are related.