11-18-2015 07:43 AM
I can use the invoke node with a vi reference to set all controls to their standard values.
As i would like to protocol all control values at the beginning of the program, i would
like to rise value change events, too.
The protocol function is already implemented for the value change events but they are rised
only by user interaction, not on program startup and i want to change that.
Thank you!
Solved! Go to Solution.
11-18-2015 07:53 AM
11-18-2015 08:24 AM
Ok, thats a possibility.
But isn't it possible to get an array of references to all vi controls and then use an invoke node to (signaling) set the default values?
I remember something like this but i was currently not beeing able to reproduce it.
11-18-2015 08:33 AM - edited 11-18-2015 08:34 AM
Hi Labuser,
- To force a value change event you need to write into a Value(Sgnl) property node.
- To set the default value for a control this way you need to know the default value of that control before you can write it into the mentioned property node.
- As I couldn't find any property/method that reads the default value you need to provide default values from other sources: files are a common way to store parameters.
But you can search any longer for other methods…