Is there a way to Minimize an external application that I don't have control over from with-in my Delphi application?
for example notepad.exe, except the application I want to minimize will only ever have one instance.
|
|
|
|
|
|
|
You can use FindWindow to find the application handle and ShowWindow to minimize it.
|
||
|
|
|
|
Thanks for this, in the end i used a modifyed version of Neftali's code, I have included it below in case any one else has the same issues in the future.
was always returning 0, so while looking for a reason why I found this function that would find the hwnd, and that worked a treat.
|
||
|
|
|
I'm not a Delphi expert, but if you can invoke win32 apis, you can use FindWindow and ShowWindow to minimize a window, even if it does not belong to your app. |
||
|