|
Run application fullscreen - Forms - Tips & Tricks - Greatis Delphi Pages
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;
- Related topics
-
Minimize non-main forms
- For more
-
Delphi Help
- Download source
|