12-17-2019 12:08 PM
Hello
I use labview to lunch 3 sequences, execute in parallel.
In Seq 1, how can i get the state(stopped, paused or running) of other sequences (seq2, Seq3).
I use getstates methode, but i get the state of seq1
Thanks
12-17-2019 10:33 PM
I know your question seems like a simple one but there is so much more to it and I have many questions:
Are you trying to get the executions inside of the UI?
Or are you just trying to get them in the sequence file?
If it is in the sequence file are you using the batch model or parallel model?
Are they in different threads or different executions? An execution contains threads.
It looks like you are passing the sequence context into the VI in your image. You need the sequence contexts from the other executions in order for this to work. If you are in different executions you need to pass it to the other threads via Queue or some other way of passing data between executions.
Regards,
12-20-2019 08:00 AM
Hello jiggawax,
Thanks for your response
Are you trying to get the executions inside of the UI? YES
I use Batch model.
they in different executions.
You need the sequence contexts from the other executions in order for this to work.
Yes this is what i'm looking for, How to get the sequence contexts from the other executions?
Thanks