11-03-2025 07:25 AM
Hello,
I am using the latest TestStand version, and I need to edit Sequence files from other computers that are still using TestStand 2019.
Is there a way to configure my TestStand so that it always saves in Version 2019 without me having to manually click 'Save as previous version' every time?
Thank you
11-04-2025 03:01 AM
Not aware of a default
yet you could create your own code to be called from the Tools Palette to save ta a default version using
PropertyObjectFile.WriteFile( writeFormat = WriteFileFormat_Current)
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		11-04-2025 03:51 AM
How can this be done? I know how to call a sequence-file from the Tools menu.
But how to get a handle to the already opened file that needs to be saved in there?
Thx
11-04-2025 04:45 AM
You can get the SequenceFile ref using
ThisContext.SelectedFile
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		11-04-2025 05:09 AM
The sequence file that i call in tools menu has now one statement with tis text:
Locals.myRef = ThisContext.SelectedFile,
Locals.myRef.AsPropertyObjectFile.WriteFile(WriteFileFormat_TestStand45),
Locals.myRef.AsSequenceFile.Save("C:\\temp\\test.seq")
When executing it saves the currently opened sequence file as test.seq.
What do i have to change that i dont have to pass the path + file name to the Save() function and just save the file wit currentfilename at current location?
11-04-2025 06:12 AM
Locals.myRef.AsSequenceFile.Save("")
should save the file at the current location under the same name according to the help