Ask a Question related to Microsoft Access, Design and Development.
-
Gal #1
Multiple Values in a list box
Hi everybody.
If anyone can tell me how can I choose multiple values in
a list box (by using ctrl or shift buttons) and store
them in a table.
Obviously, since there is only one field for it in the
table, the program won't let you do it. Any suggestions?
Thanks
Gal Guest
-
Mail values from a List with Multiple Selections with PHP
Hi, I have a little problem, I have a HTML-mailform with a List/Menu (named informatie) witch allows Multiple Selections (Hold CTRL-key and... -
submit multiple values from a list box PHP
Can any one tell me how to submit multiple values from a list box? I believe it has something to do with Arrays or Loops but i'm not sure. this is... -
multiple select list default values (asp/vb)
(asp/vb) Hi all, I have a multiple select list on an insert record form. I can make multiple selections and insert them into the database... -
multiple menu/list values inserted into one mysql column
Simple problem here for the pros I'm sure. I have constructed a "rockshow" database in mysql for local music artists/bands and I made an input form... -
Selecting Multiple Values in a List/Combo Box
The following should work: On your close button add the following line before the close command getWellList docmd.close -
Albert D. Kallal #2
Re: Multiple Values in a list box
The problem is where will you put the multiple values?
Since you can't, (and should not) stuff more then one value into a field,
the a listbox is not the best control to use. Worse, is how will you handle
when users go back to that record, you will somehow have to "high light" the
select options.
The usual solution is to create a another table that is related to the
record. This is classic one to many relation. You thus use a sub-form to
allow more then one selection, or item to be added. Often, this means that
you will use a sub-form with combo box to allow easy selection. Not quite as
user friend as a listbox, but you can make the whole in work without one
line of code...so it is a lot less work.
--
Albert D. Kallal (MVP)
Edmonton, Alberta Canada
[email]kallal@msn.com[/email]
[url]http://www.attcanada.net/~kallal.msn[/url]
Albert D. Kallal Guest



Reply With Quote

