Hi GDL Experts,
My goal is to have the user change the parent object, using drop down value lists, that select various subroutines from the child object. In the child object, I use the values{2} code to create values lists. From the values lists, I use IF __ THEN __ ENDIF statements to select subroutines based on what the user selects from the dropdown value list.
When I CALL an object using the CALL code, with a PARAMETER of the VALUES{2} of the child object, it only accepts a numerical number as a driver. e.g.
Standard code in parent object:
CALL "child" PARAMETERS TypeFromChild=1
Question:
Is it possible to use a VALUES{2} list in the child and then, copy and paste the same VALUES{2} list into the parent? Then to drive the CALL code with a PARAMETER of the VALUES{2} from the parent? E.g.
Ideal code in parent object:
PARAMETER TypeToCallFromChild=TypeFromParent
CALL "child" PARAMETERS TypeFromChild=TypeToCallFromChild
Thank you so much!