Hello,
I am a sql Server / Web developer, that is using Access for a project, and here is what I need to accomplish.
I have a table that lists Processes
I have a link table that has a record for Parent / Child relationships
I need to bring up a form that lists the Process, (typical information FORM), then has two list boxes (Or combos) that allow a drop down where you can select the Parent process of this process, and the child process of this process. I'm keeping it simple with allowing single parent and single child processes for this form.
Is there an example of this on this forum that I may emulate?
In the web world, I would populate the two lists with the output of a select statement on the tblPROCESS
(Select PROCID, PROCNAME FROM tblPROC),
then after the submit on the page, perform a Single INSERT statement with the relationship into the tblPROC_PROC Table with the PK's of each Process.
Thanks for any help.
Steve
I am a sql Server / Web developer, that is using Access for a project, and here is what I need to accomplish.
I have a table that lists Processes
I have a link table that has a record for Parent / Child relationships
I need to bring up a form that lists the Process, (typical information FORM), then has two list boxes (Or combos) that allow a drop down where you can select the Parent process of this process, and the child process of this process. I'm keeping it simple with allowing single parent and single child processes for this form.
Is there an example of this on this forum that I may emulate?
In the web world, I would populate the two lists with the output of a select statement on the tblPROCESS
(Select PROCID, PROCNAME FROM tblPROC),
then after the submit on the page, perform a Single INSERT statement with the relationship into the tblPROC_PROC Table with the PK's of each Process.
Thanks for any help.
Steve