I want to develop a Windows Application using Delphi that always stays on Desktop, even if the user clicks Show Desktop button on taskbar.
I tried the code: SetWindowPos(Handle, HWND_BOTTOM, Left, Top, Width, Height, SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE);
However, when i click show desktop, the form becomes invisible. Any solution?