Hello,
I've read through many forum posts on this issue today but can't seem to find a solution that fits my particular case.
I have three main tables:
- tblIssues (PK: IssueID)
- tblRecommendati ons (PK: RecommendationI D)
- tblActions (PK: ActionID)
There is a many-to-many relationship between issues and recommendations and between recommendations and actions. I have implemented join tables between them to account for this relationship.
I have a main form, frmIssues, that has a subform, sfrmRecommendat ions (based on qryIssueRecomme ndation). I'm able to use these forms to view AND enter issues and recommendations ... the linkMasterField s and linkChildFields (both set to "IssueID") properties are working correctly.
I'm trying to create a subform, sfrmActions (based on qryRecommendati onAction), of sfrmRecommendat ions. To be clear: sfrmActions is a subform of sfrmRecommendat ions, which is a sfrm of frmIssues. The form accurately displays the actions for a given recommendation, but when I try to enter a new action I get the following error: The LinkMasterField s property setting has produced this error: 'The object doesn't contain the Automation object Recommendations ."
I have tried using various versions of RecommendationI D in the LinkMasterField property, including [RecommendationI D], Recommendations .Recommendation ID, and [Recommendations .Recommendation ID].
I think the error has something to do with RecommendationI D not existing on the main form (frmIssues). I've seen posts that suggest putting a hidden textbox on the main form with the control I need, but so far I haven't found a way to add RecommendationI D to frmIssues.
Any suggestions?
I've read through many forum posts on this issue today but can't seem to find a solution that fits my particular case.
I have three main tables:
- tblIssues (PK: IssueID)
- tblRecommendati ons (PK: RecommendationI D)
- tblActions (PK: ActionID)
There is a many-to-many relationship between issues and recommendations and between recommendations and actions. I have implemented join tables between them to account for this relationship.
I have a main form, frmIssues, that has a subform, sfrmRecommendat ions (based on qryIssueRecomme ndation). I'm able to use these forms to view AND enter issues and recommendations ... the linkMasterField s and linkChildFields (both set to "IssueID") properties are working correctly.
I'm trying to create a subform, sfrmActions (based on qryRecommendati onAction), of sfrmRecommendat ions. To be clear: sfrmActions is a subform of sfrmRecommendat ions, which is a sfrm of frmIssues. The form accurately displays the actions for a given recommendation, but when I try to enter a new action I get the following error: The LinkMasterField s property setting has produced this error: 'The object doesn't contain the Automation object Recommendations ."
I have tried using various versions of RecommendationI D in the LinkMasterField property, including [RecommendationI D], Recommendations .Recommendation ID, and [Recommendations .Recommendation ID].
I think the error has something to do with RecommendationI D not existing on the main form (frmIssues). I've seen posts that suggest putting a hidden textbox on the main form with the control I need, but so far I haven't found a way to add RecommendationI D to frmIssues.
Any suggestions?
Comment