04-19-2012 09:19 AM
OK, I'm lost.
In the image from a shipping example with LabVIEW, I can see how the circled example works. What I want to be able to do is use more than 1 child, in the same way. Do I have to replicate the code for the other child, or can I somehow have more than 1 child use the same wire?
Solved! Go to Solution.
04-19-2012 09:22 AM
Use an array where each element in the array is an instance of the child you require.
Invoke your methods inside an auto-indexed For loop.
Ben
04-19-2012 12:22 PM
Thanks Ben.
That worked, but showed me that I was following the wrong course. The methods in the loop only allow work on the parent class data. I can't access the child class data at all. So I'll have to figure some other way to do what I want.
04-19-2012 04:46 PM
Just remember, as a class data is in private scope in LVOOP, only the class it self can access it's own data, no matter if it is a child or parent.
And a child class will NOT inherit the parents data.