git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.FastReport@13 475b051d-3a53-6940-addd-820bf0cfe0d7
14 lines
188 B
ObjectPascal
14 lines
188 B
ObjectPascal
program Project1;
|
|
|
|
uses
|
|
Forms,
|
|
Unit1 in 'Unit1.pas' {Form1};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|