Hi,
I assume from the title that you're trying to make a separate cvi executable that monitors for a separate operator interface running a sequence file.
The best architecture in this case is to use the post step callback in the client sequence file to place the result into a queue where the name of the queue starts with a * (such as *fred ). This makes the queue available across processes. The post step callback has a parameter which is the step itself, so you could easily get the Parameters.Step.Result.Status from that along with the nameof(Parameters.Step) and whatever else you needed.
Then make your separate cvi executable run a sequence that gets that information by reading the queue. i.e. the other cvi executable would be an operator interface in itself.
That way you don't miss a step result.
Hope that makes sense.
Thanks
Sacha
// it takes almost no time to rate an answer