03-31-2023 04:59 AM
I am trying to close an external application (specifically Tektronix's SignalVu-PC Vector Analysis Software) when the Teststand environment is exited. Ideally I could put this in the FrontEndCallback, but any solutions would be welcome.
Solved! Go to Solution.
04-10-2023 11:09 AM
Hi,
That should be fine.
But how critical is it for the other application to close when TestStand closes ( consider crash).
It can also be an external process running in the background which checks if seqdit.exe is running.If not it can close the other exe.
Ravi
04-14-2023 09:10 AM
This will be for a Teststand based GUI, looking to essentially treat it like one package as far as the user is concerned. Everything is to open/close when the GUI is opened /closed. The open is simple enough to do, however it is the close which I am having a problem with. Ideally I would like to avoid external processes that run outside of Teststand, for simplicity of design.
04-14-2023 11:58 PM
Hi,
If within TestStand then your approach is fine using front end callbacks.
But it cannot take care of crash conditions.Based on the criticality of your application you need to take a call.
From a user perspective if you are launching this external process from TestStand only ( call the external closing exe in command step) he will never know.
Ravi