Componentes.Terceros.jvcl/official/3.32/examples/JvFileListBox/FileDirDemo.dpr

14 lines
263 B
ObjectPascal

program FileDirDemo;
uses
Forms,
FileListBoxMainFormU in 'FileListBoxMainFormU.pas' {FileListBoxMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFileListBoxMainForm, FileListBoxMainForm);
Application.Run;
end.