You've already forked lina-components
mirror of
https://bitbucket.org/Dennis07/lina-components.git
synced 2026-06-03 16:03:46 +02:00
16 lines
257 B
ObjectPascal
16 lines
257 B
ObjectPascal
|
|
program pExample;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Vcl.Forms,
|
||
|
|
uMain in 'uMain.pas' {fmMain};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.MainFormOnTaskbar := True;
|
||
|
|
Application.Title := 'Example';
|
||
|
|
Application.CreateForm(TfmMain, fmMain);
|
||
|
|
Application.Run;
|
||
|
|
end.
|