Run application fullscreen

Posted in Forms

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;