06-10-2016 05:51 AM
I have VI with multiple Controls.
I have an event structure that triggers an event for "Value Change" for each of the Controls.
I would like to perform an action (single button press) that triggers all of the 'value change' events in this event structure without actually changing the values in every control.
Is this possible?
Many thanks, Alec
06-10-2016 06:14 AM
06-10-2016 06:33 AM
Try to this property.
06-10-2016 07:07 AM
Why do you want to do this? Value-signalling properties are "expensive". If you want to do "a bunch of things" when Button A is pressed, simply put the code for "the bunch of things" in the Value Changed Event for Button A. If it is a "collection" of the code from Buttons B, C, D, and E, so what? That way, you can arrange them in the order you wish and avoid the unnecessary calls to the Front Panel. If you are worried about Block Diagram "space", encapsulate the code in a sub-VI that takes only 32x32 pixels.
Bob Schor