TCARPENTER
Programmer
I have a form containing two sub-forms which I need linked to each other (side by side) and they are based on the following tables:
ProjectTable:
Project_Recnum - Autonumber - PK
Project_Descr - Text
Milestone_Table:
Milestone_Recnum - Autonumber - Unique Identifier
Milestone_Descr - Text - PK
Milestone_Resources:
Milestone_Res_Recnum - Autonumber - Unique Identifier
Milestone_Res_Descr - Text - PK
ProjectMilestones:
ProjectMilestones_Recnum - Autonumber - Unique Identifier
ProjectRecnum - FPK
Milestone_Recnum - FPK
ProjectMilestones_Due - Date
ProjectMilestones_Recd - Date
Milestone_Res_Recnum - FK
ProjectMilestones_Notes - Memo
The main form contains the project information, and in one sub-form, I want just these fields:
Milestone_Recnum
ProjectMilestones_Due
ProjectMilestones_Recd
ProjectMilestones_Notes
In a second sub form, to the right of the first, I want just one field:
Milestone_Res_Recnum
What I was hoping to acheive was a data sheet view of each subform and as the user scrolled through the list of milestones, they could add/edit/view the responsible party or parties for each particular milestone, I have linked the forms sucessfully (sort of) but can't add more than one record to the form on the right without an error. I do have relationships set up for the tables - what am I missing?
Todd
ProjectTable:
Project_Recnum - Autonumber - PK
Project_Descr - Text
Milestone_Table:
Milestone_Recnum - Autonumber - Unique Identifier
Milestone_Descr - Text - PK
Milestone_Resources:
Milestone_Res_Recnum - Autonumber - Unique Identifier
Milestone_Res_Descr - Text - PK
ProjectMilestones:
ProjectMilestones_Recnum - Autonumber - Unique Identifier
ProjectRecnum - FPK
Milestone_Recnum - FPK
ProjectMilestones_Due - Date
ProjectMilestones_Recd - Date
Milestone_Res_Recnum - FK
ProjectMilestones_Notes - Memo
The main form contains the project information, and in one sub-form, I want just these fields:
Milestone_Recnum
ProjectMilestones_Due
ProjectMilestones_Recd
ProjectMilestones_Notes
In a second sub form, to the right of the first, I want just one field:
Milestone_Res_Recnum
What I was hoping to acheive was a data sheet view of each subform and as the user scrolled through the list of milestones, they could add/edit/view the responsible party or parties for each particular milestone, I have linked the forms sucessfully (sort of) but can't add more than one record to the form on the right without an error. I do have relationships set up for the tables - what am I missing?
Todd