123456789101112131415161718192021222324252627282930313233 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- USEFORMNS("MainUnit.pas", Mandelunit, MainForm);
- //---------------------------------------------------------------------------
- int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->MainFormOnTaskBar = true;
- Application->CreateForm(__classid(TMainForm), &MainForm);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- catch (...)
- {
- try
- {
- throw Exception("");
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- }
- return 0;
- }
- //---------------------------------------------------------------------------
|