I don't want the user to have to enter the information twice.
I have a header (in the form header of the many form) I have the one side displayed so that when the user opens the form, he can visually confirm that he is adding information to a specfic project.
Let me try to restate:
A user creates a new project via a form. I have a save button and a save cmd set on exit.
Once the user creates the project, there are several other forms that require entry. So what I have set up is, the user creates the project, then clicks a cmd button to go to another form and continue entering additional details about the project (many tables).
I want to code it so that, when the user clicks the cmd button to go to the other forms, a record is created in the many side, so when the form opens, they see the project description (one) information on the form header, and then they can add data to the detail section (many table)and the primary key (project number) is already the current record.
hmmmmmmmmm, that makes me wonder,, would it be easier to just open the detail form with the project info in the header, and code that form to start a new record with the primary key inserted via a function??
does that explain the issue clearer? I hope I am not spinning anyones head with a poor explanation.
So I think what I need to do, is when the user saves the project info,
first save to the one side in the project table,
next, create a new record in the many table, (just the primary key will do)
then, open the detail form linking criteria from the project form.
Ron