02-23-2009 11:18 PM
Hii
In my Front Panel i am having 10 Boolean Controls , 5 String Controls and 3 Numeric controls .... in that i want to take the 10 boolean control ref alone is it possible....................
02-24-2009 12:01 AM
Do you mean you want one reference for all 10 boolean controls or would it be OK to put them in an array or a cluster?
-Matt
02-24-2009 12:03 AM
02-24-2009 01:02 AM - edited 02-24-2009 01:02 AM
Hi Karthikey,
The following code should help you:
Ton
02-24-2009 11:29 PM
Hii
Is there any difference between the attached two methods of obtaining the Boolean Reference...
02-25-2009
12:43 AM
- last edited on
04-02-2025
04:48 PM
by
Content Cleaner
KarthikeyanMathialagan wrote:
Hii
Is there any difference between the attached two methods of obtaining the Boolean Reference...
Allmost not.
The little difference is how you obtain the reference to the pane. In the 'Alternate Method' you get a reference to the VI by path. This will not work for VIs that are spawned.
Spawning can be done by setting the VI to reentrant, in that case the boolean references will refer to booleans on the edit-VI of the reentrant VI, the second spawning method is loading the VI into memory from a template (VIT).
Best is to use the 'This VI' reference:
.
Ton