Hello,
I have a form [frmIndividual] with a subform [sbfOrgsContact]. The form shows a list of organizations for wich the individual is the main contact. I would like to double click the field/name of the organization [Org_NAME] and have another form [frmOrg] open up with the record based on [Org_ID] wich is not displayed in subform. [Org_ID] is part of table the underlying subform (on the first form) and newly opened form are based upon.
First Form:
frmIndividual
sbfOrgsContact
Org_Name (from ORG table that has Org_ID)
Second form:
frmOrg (from ORG table that has Org_ID)
I have set a doublClick event macro with the condition is:
This has been th only condition that has partially worked. It only works from the subform. When I open the form and select the field in the subform I get a message asking for the paramenter name "Forms![sbfOrgsContact]![Org_ID]
".
Any suggestions or explanations?
Thanks!!!
I have a form [frmIndividual] with a subform [sbfOrgsContact]. The form shows a list of organizations for wich the individual is the main contact. I would like to double click the field/name of the organization [Org_NAME] and have another form [frmOrg] open up with the record based on [Org_ID] wich is not displayed in subform. [Org_ID] is part of table the underlying subform (on the first form) and newly opened form are based upon.
First Form:
frmIndividual
sbfOrgsContact
Org_Name (from ORG table that has Org_ID)
Second form:
frmOrg (from ORG table that has Org_ID)
I have set a doublClick event macro with the condition is:
Code:
[Org_ID]=Forms![sbfOrgsContact]![Org_ID]
This has been th only condition that has partially worked. It only works from the subform. When I open the form and select the field in the subform I get a message asking for the paramenter name "Forms![sbfOrgsContact]![Org_ID]
".
Any suggestions or explanations?
Thanks!!!