Mega Code Archive

 
Categories / Delphi / Examples
 

Run application fullscreen

Title: 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;