01-06-2015 11:32 PM
Hi all,
I have a case structure in a while loop and this while loop is another case structure 'TRUE' Case. when the inner case structure completed all the cases the while loop was stopped and now i am going to 'FALSE' case of OUTER CASE STRUCTURE. Now i was unable to reset the indicators/controls in the while loop to their default values. Please suggest me with your ideas. Thanks in advance.
Solved! Go to Solution.
01-07-2015 12:20 AM
You should share your code. Odds are, you want a complete design change. A case inside of a loop inside of a case probably means something isn't done very well.
Then, try to explain what you want to do. If you want to reset the values, just wire in the desired values. Worst case, use the invoke node to reset to default values.
01-07-2015 03:10 AM
In the outer case False you can use Reinitialize to default property node, e.g.
/Y
01-07-2015 03:19 AM
thank you all.