tom
10/19/2020, 9:02 PMLOOP(result=X)
in my task and at some point I pause and resume that task (e.g. using raise PAUSE()
within the task and then resuming in the UI). It seems like my task is resuming from the beginning and loses the loop context. Is there any way to make it keep the loop context? I tried doing raise PAUSE(result=X)
but it would still resume from the beginning.
Another question I have is if the result in LOOP
needs to be small or if it there is a way to have a growing Result
instance that potentially stores a lot of data.Kyle Moon-Wright
10/19/2020, 9:27 PM