Componentes.Terceros.jcl/official/2.1.1/examples/common/filesearch/FileSearchDemo.dpr
2010-01-18 16:51:36 +00:00

17 lines
318 B
ObjectPascal

program FileSearchDemo;
{$I jcl.inc}
uses
Forms,
FileSearchDemoMain in 'FileSearchDemoMain.pas' {FileSearchForm};
{$R *.res}
{$R ..\..\..\source\windows\JclCommCtrlAsInvoker.res}
begin
Application.Initialize;
Application.CreateForm(TFileSearchForm, FileSearchForm);
Application.Run;
end.