09-29-2009 09:55 AM
OK, I give up.
I'm trying to learn OOP in LabVIEW and I want to auto-populate the contents of the 00147 array of three elements into the first three parts of the class cluster to the right of it in this snippet. What's the easy way to do that? Or am I trying to make this class do too much? I tried using the array to cluster tool and LabVIEW crashed and burned most horribly.
Tay
09-29-2009 10:04 AM
The data of a a Class is protected and can only be accessed by members of the class or its children. So you either have to make that VI a member of the class OR you should right accessor VI for that class that can be used by your code.
Ben
09-30-2009 08:03 AM
Well, It was the insertion of the array into the wire I had trouble with. Here's what I did, in the upper right.