Componentes.Terceros.FastRe.../official/4.33/Demos/EmbedDesigner/Project1.dpr
2007-08-20 13:57:28 +00:00

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.