/components/lazreport/samples/stringgrid/project1.lpr
http://github.com/graemeg/lazarus · Unknown · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · d681a0b6445fc8feb2260a77a888b3f2 MD5 · raw file
- program project1;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms
- { you can add units after this }, Unit1, lazreport;
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.