Is it possible to a make a form in Microsoft Access where a you can create entries in 2 tables in the same page?

Imagine there is a table with 3 fields:

  1. ObjectId
  2. ObjectName
  3. TypeId

where TypeId is the PK of another table which has the following fields:

  1. TypeId
  2. TypeName

I want to show in my form 2 editable text fields

  1. ObjectName
  2. TypeName

I want the user to be able to add both Objects and Types but, the way I am implementing it, it can only

  1. add a Type entry when adding a Object
  2. edit the associated Type when editing a Object

But I want to also be able to

  1. select a exisiting Type when adding a Object
  2. add a Type when editing a Object

In the same form

link|improve this question

feedback

1 Answer

The usual way of doing this is to create a combo box with two columns, the TypeID and TypeName fields from the second table, hide the first column, and bind the combo box to the TypeID field of the first table on your form.

The combo box wizard can do this for you, in fact.

link|improve this answer
That's exactly what I am doing. – Jader Dias Sep 13 '10 at 19:58
1  
Adding a new type involves using the NotInList event. The help file gives examples of how to do this. – David W. Fenton Sep 14 '10 at 20:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.