delphi fullscreen

To make a Delphi application go fullscreen, you can use the WindowState property of the form. Set WindowState to wsMaximized to maximize the form and remove the window decorations. Here is an example:

Form1.WindowState := wsMaximized;

You can place this code in the FormCreate event of the main form to make it go fullscreen when the application starts.