Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Form without border icons
By using this code, you will get a form without border icons. Use SetWindowLong and GetWindowLong functions.
procedure TForm1.FormCreate(Sender: TObject);
var
SetSt: Longint;
begin
SetSt:=GetWindowLong(Handle, GWL_STYLE);
SetWindowLong(Handle, GWL_STYLE, SetSt and Not WS_SYSMENU);
end;
-
More for developers