//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#include "ListFile.h"
#pragma hdrstop
//---------------------------------------------------------------------------
#pragma resource "*.dfm"
TListFileForm *ListFileForm;
//---------------------------------------------------------------------------
__fastcall TListFileForm::TListFileForm(TComponent* Owner)
	: TForm(Owner)
{
}
//----------------------------------------------------
void __fastcall TListFileForm::ReturnFileListClick(TObject *Sender)
{
	Close();
}
//---------------------------------------------------------------------------
void __fastcall TListFileForm::FormClose(TObject *Sender,
      TCloseAction &Action)
{
        //Action = caHide;        
}
//---------------------------------------------------------------------------

