Hi. I have a combobox that look up from a table. Then I like the selection made in combobox to store this in another table. The problem i facing is that it stores just the ID of the combo selection in the table and not the text showed in combobox. How to set this correct:
This is what I have in combobox row source:
SELECT PersonalContact.ID, PersonalContact.Abbreviation
FROM PersonalContact
ORDER BY PersonalContact.Abbreviation;
Thanks!
This is what I have in combobox row source:
SELECT PersonalContact.ID, PersonalContact.Abbreviation
FROM PersonalContact
ORDER BY PersonalContact.Abbreviation;
Thanks!