07-21-2014 08:42 AM
Hello,
I would like my VI to create an array of controls that can be operated by the Front Panel. That is, I have an integer which specifies the amount of controls I need. I then would like my VI to automatically create an array of boolean controls that I can change from the Front Panel. I can create the array for Indicators, but unfortunately the behaviour(control/indicator) of the elements inside seems to be bound to the behaviour of the array.
Thanks in advance
Solved! Go to Solution.
07-21-2014 08:54 AM
You can create an array of references to controls which already exist. Hide/show the controls you want by indexing the array and passing the reference for each control to a property node.
I don't think it's possible to Create/Destroy controls during run-time.
07-21-2014 09:00 AM
07-21-2014 09:04 AM
I see.
Hiding the unused elements via property node will have to do then.
Thanks to both of you.