05-12-2021 01:41 AM
hi!
i have a labview.vi that is handles some data around result handling in SequenceFilePostResultListEntry. but my problem now is even whne that Vi gets an error inside and outputs it to step.result.error it won't trigger the SequenceFilePostStepRuntimeError. the error just disappears.
but if any other VI like in MainSequence throws an error it goes directly to SequenceFilePostStepRuntimeError.
05-13-2021 09:53 AM
Engine callbacks don't trigger other engine callbacks. You'll have to either call the SFPostStepRuntimeError explicitly or handle the error in the SFPostStepResultListEntry callback.
05-17-2021 12:14 AM
okey thanks that explains a lot of things. I was hoping there just was some setting somewhere.