Componentes.Terceros.jvcl/internal/3.36/1/examples/JvLED/JvLEDDemo.dpr
2009-03-04 12:31:55 +00:00

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.