//---------------------------------------------------------------------------
#ifndef ListFileH
#define ListFileH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\Dialogs.hpp>
//---------------------------------------------------------------------------
class TListFileForm : public TForm
{
__published:	// IDE-managed Components
	TLabel *Title1;
	TBevel *Bevel1;
	TEdit *FileName;
	TMemo *OutBox;
	TButton *ReturnFileList;
	TOpenDialog *OpenDialog;
	void __fastcall ReturnFileListClick(TObject *Sender);
        void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private:	// User declarations
public:		// User declarations
	__fastcall TListFileForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TListFileForm *ListFileForm;
//---------------------------------------------------------------------------
#endif
