//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop
USERES("bldPrjLT.res");
USEFORM("blprj.cpp", Form1);
USEUNIT("..\..\..\Include\Kl_TLB.cpp");
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
  try {
    Application->Initialize();
    Application->CreateForm(__classid(TForm1), &Form1);
     Application->Run();
  } catch (Exception &exception) {
      Application->ShowException(&exception);
  }
  return 0;
}
//---------------------------------------------------------------------------
