unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, FileCtrl, ComCtrls;
type
TForm1 =
class(TForm)
ProgressBar1: TProgressBar;
Memo1: TMemo;
SaveDialog1: TSaveDialog;
FileListBox1: TFileListBox;
procedure Button3Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure FileListBox1Change(Sender: TObject);
public
procedure GetFiles(
const Path:
string);
end;
{...}