03-15-2017 12:12 PM
Hi,
I am using the TestStand User Interface C++ Simple UI.
I would like to customize the UI, not showing the Fields "Description" and "Settings" during execution.
Only "Step" and "Status" shall be shown.
I have browsed the C++ source code, but can't find the point where to enable/disable visualization of these fields.
Can anyone provide me with suggestions?
Thanks in advance,
Best regards,
Elena B.
Solved! Go to Solution.
03-15-2017 01:03 PM
Elena,
The control you want to modify is a SequenceView control from TestStand. In the code you are referring, variable mSequenceView holds reference to the required control.
It contains Columns property which you can use to remove the columns that are not required.
-Shashidhar
03-16-2017 04:17 AM
Hi Shashidhar,
thanks a lot. I have tried and it works perfectly. 🙂
Best regards,
Elena B.