NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Size of teststand-window

Hello,
is there a way to start TestStand with a commandline-option that passes the window-size of teststand
and the opened sequence (something like seqedit.exe /ts_hight=300 / seq_hight=100 /...) ?
Normally teststand starts in the size like it was closed the last time. But i want always
the same size when starting. Is this possible with commandline-option or do i have to write
teststep for SequenceFileLoad in the model which resizes the window manually?

Thx for hints
0 Kudos
Message 1 of 4
(3,040 Views)

NewOne,

Launch a command prompt window and go to the sequence editor directory.
Type 'SeqEdit.exe /?' and you will get a list containing the command line options.

Hope it helps

0 Kudos
Message 2 of 4
(3,028 Views)
Hello Antionio,
i already saw this option. But there is nothing listed like what i was looking for.
I hoped for a "hidden" option.
But thx for your tip
0 Kudos
Message 3 of 4
(3,023 Views)
You can do this with a batch file. The sequence editor window settings are stored in the registry at
HKEY_CURRENT_USER\Software\National Instruments\TestStand\<VERSION>\GUIs\Sequence Editor\Settings
where <VERSION> is the version of TestStand you are using (2.0, 3.1, etc.)
 
Start the sequence editor and set up the windows to the positions you want to restore and exit the sequence editor. Use the registry editor to export the above registry key to a file (say "seqeditsettings.reg"). Then create a batch file that contains the following:
 
regedit /s seqeditsettings.reg
seqedit.exe
 
0 Kudos
Message 4 of 4
(3,015 Views)