08-28-2018 06:47 AM
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?
Solved! Go to Solution.
08-28-2018 08:09 AM
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.
08-29-2018 02:39 AM
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