Componentes.Terceros.jcl/official/1.104/examples/windows/filesummary/FileSummaryExample.dpr
2009-02-27 12:18:04 +00:00

17 lines
306 B
ObjectPascal

program FileSummaryExample;
{$I jcl.inc}
uses
Forms,
FileSummaryDemoMain in 'FileSummaryDemoMain.pas' {FormMain};
{$R *.res}
{$R ..\..\..\source\windows\JclCommCtrlAsInvoker.res}
begin
Application.Initialize;
Application.CreateForm(TFormMain, FormMain);
Application.Run;
end.