TheElephantMan
Programmer
Hi, all.
I have two tables that resemble the following:
PROJECTS
project_id|project_name
----------|------------
1 |fix mainframe
2 |rebuild warp drive
CHANGES
project_id|change_number|change_details
----------|-------------|--------------
1 |1 |drained coolant
1 |2 |updated drivers
1 |3 |loaded tapes
2 |1 |mended crystals
2 |2 |cleared conduits
I am trying to make a form that allows me to enter new CHANGES, using the list of PROJECTS as a combo box to decide the value that will go in the project_id field of CHANGES.
Using the Wizard, I've created a form that uses the two tables, and includes the project_name field from PROJECTS, and all of the fields from CHANGES. I've placed project_name on the form as a combo box, but when I put an entry in it, it creates a new value in the CHANGES table.
Is it possible to use the project_name field in this fashion? Can PROJECTS.project_name be linked to CHANGES.project_id like this?
Thank you very much for the help!
TEM
I have two tables that resemble the following:
PROJECTS
project_id|project_name
----------|------------
1 |fix mainframe
2 |rebuild warp drive
CHANGES
project_id|change_number|change_details
----------|-------------|--------------
1 |1 |drained coolant
1 |2 |updated drivers
1 |3 |loaded tapes
2 |1 |mended crystals
2 |2 |cleared conduits
I am trying to make a form that allows me to enter new CHANGES, using the list of PROJECTS as a combo box to decide the value that will go in the project_id field of CHANGES.
Using the Wizard, I've created a form that uses the two tables, and includes the project_name field from PROJECTS, and all of the fields from CHANGES. I've placed project_name on the form as a combo box, but when I put an entry in it, it creates a new value in the CHANGES table.
Is it possible to use the project_name field in this fashion? Can PROJECTS.project_name be linked to CHANGES.project_id like this?
Thank you very much for the help!
TEM