Minimize all windows
You can minimize all windows with this code snippets.
procedure MinimizeAll;
var
h:HWnd;
begin
h:=handle;
while h > 0 do
begin
if IsWindowVisible(h) then
Postmessage(h,WM_SYSCOMMAND,SC_MINIMIZE,0);
h:=GetnextWindow(h,GW_HWNDNEXT);
end;
end;
VCL unit based TSplitter extension. Provides extensions to t...
If you need to get windows temporary folder for your applica...
TntWare controls allow you to develop applications that ta...
AnimationEffect component will add a smooth and extremely co...
Enhanced analog of a standard TPanel component for Delphi. S...
Thursday 15 Feb 2007 | Delphi Tutorial | System