//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "SudoLoeser1.h"
#include "LangueTabL.h"
#include "Options1.h"
#include "GenDlg1.h"
#include "WarnDlg.h"
#include "winnls.h"
#include "io.h"
#include <math.h>
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "cspin"
#pragma resource "*.dfm"
TForm1*Form1;
//v.5.5.5 9/12
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
  : TForm(Owner)
{
  LangTab = new TStringList();
  for(int i=0; i<LANG_ENTRIES; i++)
  {
    String S=LangueTabL[i][0];
    LangTab->Add(S);
    if(S=="xx") break;
  }
}
//---------------------------------------------------------------------------
