RAD Studio Athens

1.27

Description

The following code removes a form๏ฟฝs Maximize button when you click a button.

Code

procedure TForm1.Button1Click(Sender: TObject);
begin
BorderIcons := BorderIcons - [biMaximize];
end;

Uses