09-07-2018 06:34 AM
Hello,
can I change the label description using TestStand API (Visual Basic)?
09-07-2018 09:39 AM
If, for instance, you have a MainSequence/Main Label step named "Label", you can make a statement in another part of Main to change the description with RunState.Sequence.Main["Label"].Description = "12345" (Note that this is a TestStand step; I'm guessing there is a simple analogous VB command). This will change the value during run time, but it will revert back by the time the sequence is complete.