1234567891011121314151617181920212223242526272829303132333435363738 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #include <sysutils.hpp>
- #pragma hdrstop
- #include <tchar.h>
- //---------------------------------------------------------------------------
- USEFORM("Unit1.cpp", Form1);
- //---------------------------------------------------------------------------
- int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
- {
- try
- {
- System::Sysutils::FormatSettings.DecimalSeparator = (wchar_t)".";
- Application->Initialize();
- Application->MainFormOnTaskBar = true;
- Application->CreateForm(__classid(TForm1), &Form1);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- catch (...)
- {
- try
- {
- throw Exception("");
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- }
- return 0;
- }
- //---------------------------------------------------------------------------
|