I need help in working with minimized programs when using a custom / self-made explorer.exe file .. because if processed correctly, minimized programs will simply decrease to about 100x50px and remain on the screen. I designed a timer in C # to check the “sign” processes, list them with mainWindowHandler and move them off the screen using “MoveWindow”. To return them, I use the handler and the ShowWindow function, which works AWESOME .. but, as I said, it includes a constantly running timer, so there should be a cleaner / easier way to achieve this.
Any ideas? How can I tie and raise an event while minimizing the window?
* note: show and movewindow are functions from user32.dll. I am not trying to catch when MY forms are minimized, but when OTHERS programs exist.
source
share