Componentes.Terceros.jcl/official/1.100/examples/common/filesearch/QFileSearchDemo.dpr

17 lines
322 B
ObjectPascal

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