Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Run application fullscreen
To run application fullscreen you must change form's WindowState property to wsMaximized.You can make it during creation of your application or during FormCreate event.
procedure TForm1.FormCreate(Sender: TObject);
begin
WindowState:=wsMaximized;
end;
-
More for developers