I have a simple database (made just for practice) with a number of tables. It's supposed to be a "Library usage database", with tables for books, lenders, cities etc.
For instance, the table "Lenders" is a table with..well.. people loaning books from the library. It has among other things a column "City" which is a Foreign Key (right?) that references to the table of Cities.
Now, I would like a form to add lenders. However, for "cities" I would like a control/ list box/ drop down box that displays the cities already entered (displayed by name). When I select a city in that list, the corresponding ID-number is set in the "Lenders" table.
Is there a (fairly) simple way to do this. I've experimented with subforms and list boxes, but not quite found a way to do this.