Hi,
1). In order to monitor the code continuously am using if else logic,is there any other logic for continuous monitoring the code and execution of the step.
2).if test=1 then
test:=2
test1:=false;
end_if
in the above code whether test1 will execute or not?
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
1). In order to monitor the code continuously am using if else logic,is there any other logic for continuous monitoring the code and execution of the step.
2).if test=1 then
test:=2
test1:=false;
end_if
in the above code whether test1 will execute or not?
Thanks
it will execute once.
false is zero,
true is anything else.