mirror of
https://bitbucket.org/Dennis07/lina-components.git
synced 2024-11-24 08:02:12 +02:00
af638be33d
Signed-off-by: Dennis07 <den.goehlert@t-online.de>
15 lines
223 B
ObjectPascal
15 lines
223 B
ObjectPascal
program pExample;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
uMain in 'uMain.pas' {fmMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TfmMain, fmMain);
|
|
Application.Run;
|
|
end.
|