06-10-2011 03:15 AM
Hello,
My operator interface uses TestStand ActiveX control in C#. I will use the OP to test a bench of DUTs, which runs the same sequence file. I would like to know the total UUT-Tested, UUTPassed and UUTFailed count after each DUT tested. Is there any embedded parameter does the job for me and how could I get it? If there is not, I have to create internal variables in C# to do the job.
Thanks
Regards,
Solved! Go to Solution.
06-14-2011 07:18 AM
No, there is no build in function for this. So either you will have to implement something like this in on of the following:
a) The user interface
b) The SequenceFile (as long as it is not unloaded in between)
c) The process model
d) Use an external tool for analysis
If you are already working with databases for reporting, i would suggest using d). If not, you can choose. But modifying the process model is not recommended (if other, simple solutions are available), i wouldn't recommend c).
hope this helps,
Norbert
06-14-2011 07:28 AM
Good to know!
Thanks Norbert