Hello,
how do i ste the Position of an external Process.
This is how i start it:
Bb:= TProcess.Create(Nil);
try
Bb.Executable:=(PathToFile);
Bb.Options:= [poWaitOnExit];
Bb.Execute;
finally
Bb.Free;
end;
i checked "
https://www.freepascal.org/docs-html/fcl/process/tprocess.html" but was not able to find anything useful.
I Need it beacause the external programm is spread across my 2 monitors and i cant understand why.
I need it 2 times actually and the second tyme the application is in the Left bottom Corner.
Edit: tried using TProcess.WindowLeft and TProcess.WindowRect but i can't access those properties.