03-18-2010 07:39 AM
Now a window will be displayed with possible sequences, after selecting one of them, I want to load this sequence in the default TestStand GUI, is this possible?
Best regards
03-18-2010 10:06 AM
The API calls would be:
ApplicationMgr applicationMgr = sequenceContext.Engine.GetInternalOption(InternalOption_ApplicationManager);
applicationMgr.OpenSequenceFile(sequenceFilePath);
03-18-2010 10:21 AM