program ExampleProject3; {$mode objfpc}{$H+} uses Interfaces, // this includes the LCL widgetset Forms { add your units here }, Example3; begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end.