NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

How to set position of Call Executable Window

Solved!
Go to solution

I have Parallel model with 8 test sockets. Each of the test sockets calls .exe program that opens in the top-right cornet.

 

How can I call executables so that each of the .exe program windows will be opened on different location so that I will be able to see all .exe windows in my screen?

0 Kudos
Message 1 of 3
(3,530 Views)
Solution
Accepted by topic author Skoda3

One possible solution is to get a program such as Cmdow. This program can move and resize a command window.

 

Then, create a .bat that calls Cmdow and your executable.

 

Pulido Technologies LLC

Message 2 of 3
(3,514 Views)

Thank You, this was the solution.

I have created .bat file and it works ok for me.

 

moveWindows.bat file is:

cd C:\Users\me\CmdowFolder\Bin\Release  :: location where Cmdow.exe is saved (no installation needed) 
cmdow "First Window To Move" /MOV 1 370 :: arguments for move command -> /MOV top left
cmdow "Second Window To Move" /MOV 365 370
cmdow "Third Window To Move" /MOV 730 370
cmdow "Fourth WIndow To Move" /MOV 1095 370

0 Kudos
Message 3 of 3
(3,503 Views)