git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@17 7f62d464-2af8-f54e-996c-e91b33f51cbe
14 lines
211 B
ObjectPascal
14 lines
211 B
ObjectPascal
program JvLEDDemo;
|
|
|
|
uses
|
|
Forms,
|
|
LEDMain in 'LEDMain.pas' {LEDDemoMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TLEDDemoMain, LEDDemoMain);
|
|
Application.Run;
|
|
end.
|