Это не может быть сделано с помощью мастера формы. Связанный материал формы - красная сельдь.
Но это можно сделать довольно легко следующим образом.
- Используйте мастер форм, чтобы получить форму как можно дальше от полей только из
people
таблицы. - Изменить форму в режиме конструктора (* подсказка: иконка полностью неинтуитивная, но выглядит следующим образом : )
- Добавьте элемент управления «список» в вашу форму (примечание: не поле со списком, это что-то другое в Base). Это откроет волшебника, который проведет вас через все остальное.
- На
Choose the table from which the data should be used as basis for the list content
выберитеjobs
. - Выберите
description
какDisplay field
. - Under
Field from the Value Table
selectjob_id
and underField from the List Table
selectid
.
That's it! The dropdown box will now work exactly as expected:
If you don't like wizards, you can manually edit the List Box control as follows:
- Add your list box then close the wizard. Click on the "Control" icon, which is a gear. (This also makes no sense.)
- Enter the information as follows, where 'List content' says "SELECT "DESCRIPTION", "ID" FROM "JOBS". Notice that the field you want to the user to see must come first, and that the 'Bound field' is zero-indexed and should refer to the ID column.
That's it!