How can I set another applications top, left, width and height from my app?
eg. I want to do a CreateProcess and start "explorer.exe c:\temp"
And then later on, when I click on "Button1"
bring the explorer window (the one I created with CreateProcess) to the foreground, and
set it to Top:10, Left 10 width 400, height 300
......Place ShellAPI in Form Uses Clause
ShellExecute(Form1.Handle,
'', 'c:\temp', SW_SHOWNORMAL);
However, you can't set placement parameters with this call.
One possibility would be to surf for explorer like component on internet and just call it up in a window. Good luck.