Componentes.Terceros.jcl/official/2.1.1/examples/common/filesearch/FileSearchDemo.dpr

17 lines
318 B
ObjectPascal
Raw Permalink Normal View History

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.