fields in combo box

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
 
G

Guest

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
 
B

Bird

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top