Componentes.Terceros.jvcl/internal/3.36/1/examples/JvFileListBox/FileDirDemo.dpr
2009-03-04 12:31:55 +00:00

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.