Of course one can type this in the Project Source (yourproject.lpr)
-----------------------------------------
program Project1;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Unit1, Unit2;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
form2.visible:=true; // <------------ add this.
Application.Run;
end.
-------------------------------------