fields in combo box

  • Thread starter Thread starter Bird
  • Start date Start date
B

Bird

I'm a novice access programmer. However I know my way in relational
database design. My question is the following:

If I want to pick a record from a table (with a multi attribute key) to
use in another table where those attributes are part of the key of that
table I want idealy use a combo box which shows the fields of the first
table (iets key values) en then 1:1 copy those fields in the target
table. The standard combo box allows me only to select 1 attribute.

What do I mis here? How can I solve my problem?

Thanks in advance
 
Hi.

It sounds like you need a ListBox instead. A ComboBox will only let you
select one item, but in a ListBox (provided the Multi Select property is set
to Extended) you can select multiple items.

-Michael
 
Michael said:
Hi.

It sounds like you need a ListBox instead. A ComboBox will only let you
select one item, but in a ListBox (provided the Multi Select property is set
to Extended) you can select multiple items.

-Michael
Thanks Michael, I'm gonna experiment with your suggestion!
 
Back
Top