NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

List of Recently Used Sequences

Is it possible to retrieve the list of recently sequences that were opened along with the file paths? (Is it stored in an INI file anywhere)?

 

The list can be viewed (manually) from the file menu.

 

Thanks

0 Kudos
Message 1 of 3
(3,270 Views)

Within Custom Sequence Editor you can use ApplicationMgr.MRUFiles method to get a collection of the most recently used sequence file names in the application.

Regards
MY
0 Kudos
Message 2 of 3
(3,247 Views)
Or you can find the MRUFileList in File Seqedit.ini in C:\Document and Settings\UserName\Local Settings\Application Data\National Instruments\TestStand 4.0\

The File is in XML format and the section is like so:

<MaxMRUFiles classname='Num'>
                        <value>4</value>
</MaxMRUFiles>
<MostRecentlyUsedList classname='Strs'>
<value lbound='[0]' ubound='[2]'>
<value arrayindex='[0]'>C:\Sequence File 1.seq</value>
<value arrayindex='[1]'>C:\Sequence File 2.seq</value>
<value arrayindex='[2]'>C:\Sequence File 3.seq</value>
</value>
</MostRecentlyUsedList>

Hope that can help you.
Regards
MY
0 Kudos
Message 3 of 3
(3,244 Views)