04-09-2023 09:08 PM - edited 04-09-2023 09:14 PM
I have a VI with an event structure. An event is triggered when either Button 1 or Button 2 is pressed. How do I program NI TestStand to trigger the same event in the VI?
Solved! Go to Solution.
04-09-2023 10:50 PM
You can use Value (Signaling) Property to fire an event programmatically. However, you should be careful in using a VI with a while loop as a code module in TestStand. The step might be stuck at the VI with the while loop unless you run that VI asynchronously. Asynchronously Starting and Stopping a VI in TestStand
04-10-2023 04:11 PM
Thanks ZYOng! That works.