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

14 lines
263 B
ObjectPascal
Raw Normal View History

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