12-26-2018 06:53 PM
Hello.
When only one local variable is selected, read / write changes are possible in the right-click menu.
However, after selecting several local variables, the read / write menu disappears from the right-click menu.
Is there a function or shortcut for changing read / write of several local variables at once?
My lab version is 2015 SP1.
Thank you.
12-26-2018 07:06 PM
Short answer, no.
Longer answer:
1-You should not have so many local variable. you will face race condition between the read and write value.
2-You should have a producer consumer structure. one loop take care of the GUI while the other one take care of the hardware... It is even possible to have one producer and multiple consumer.
Benoit
01-02-2019 10:34 PM
thanks bseguin.