List Box Help

gilescis

D. Castaldo
Local time
Yesterday, 22:12
Joined
Jan 23, 2006
Messages
106
I have a table called tbltechissues that has a field called problem that is a combo box.

I placed that field on the form and set the multi select to simple, but i need to pass the selected data to the field into the table. can someone assit me in this process

Thanks
 
1. Your table should not be using lookups (that's what this statement sounds like you are doing:
I have a table called tbltechissues that has a field called problem that is a combo box
2. You should not store multiple values in a single field for a single record (violates normalization principles and makes pulling data very difficult).
3. Multiselct combo and list boxes require code to iterate through the selections.
 

Users who are viewing this thread

Back
Top Bottom