11-16-2016 08:36 AM - edited 11-16-2016 08:40 AM
I have a program who generate number values. Almost everything is ok, but if i click something from menu, values are generated and app run one times (values are displayed). Why this is happen and how solve this problem. I think is something wrong with timeout. I cant upload my menu config 😕 Example is when i click OK button. Why program is running?
Solved! Go to Solution.
11-16-2016 09:18 AM
Something that will help you a lot is to turn off the "Use Default If Unwired" on all of your output tunnels except for the stop condition. You could also use the Linked Tunnels feature to help you wire your timeout through all of your cases.
What is happening is you have nothing wired for the timeout in the menu selection event case. So the timeout for the next iteration is 0. This is causing the Start/Stop Value Change;Timeout event case to run immediately.
11-16-2016 09:32 AM
So i should write -1 in output? Like this?
11-16-2016 09:58 AM
The -1 would set the timeout to infinity. So I imagine that is what you want.
11-16-2016 10:03 AM
You are awesome. Thank you. 🙂