How to create a window (form) that is similar to Sticky Notes?
The main characteristic that I need:
- It never gets minimized (Win+D / Win + W)
Other characteristics:
- It always remains under other windows
- No taskbar button
- Transparency (if possible)
Setting form's parent to ProjMan almost works! The problem is that the form is not semi-transparent when I do so (alpha blend/transparency is ignored):
hWindow := FindWindow(NIL, PChar('Program Manager')); // this might be a bad idea. https://stackoverflow.com/questions/527950/how-to-make-always-on-bottom-window
if hWindow <> 0 then Form1.ParentWindow := hWindow;
I was thinking (yes, I know it is a dirty hack) I could put code in a 1000ms timer to restore the window if it was minimized but it won't work when Win+D is pressed. Looks like windows are not actually minimized when Win+D is pressed.