From df611e9ad73769d11c51612ca43175cb0edd5fd4 Mon Sep 17 00:00:00 2001 From: Aleksander Misztal Date: Sat, 9 Feb 2019 11:05:04 +0000 Subject: [PATCH] =?UTF-8?q?Usu=C5=84=20'Project1.cpp'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Project1.cpp | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Project1.cpp diff --git a/Project1.cpp b/Project1.cpp deleted file mode 100644 index fa60e15..0000000 --- a/Project1.cpp +++ /dev/null @@ -1,37 +0,0 @@ -//--------------------------------------------------------------------------- - -#include -#pragma hdrstop -//--------------------------------------------------------------------------- -USEFORM("Unit1.cpp", Form1); -USEFORM("Unit2.cpp", Form2); -USEFORM("Unit3.cpp", Form3); -//--------------------------------------------------------------------------- -WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) -{ - try - { - Application->Initialize(); - Application->CreateForm(__classid(TForm1), &Form1); - Application->CreateForm(__classid(TForm2), &Form2); - Application->CreateForm(__classid(TForm3), &Form3); - Application->Run(); - } - catch (Exception &exception) - { - Application->ShowException(&exception); - } - catch (...) - { - try - { - throw Exception(""); - } - catch (Exception &exception) - { - Application->ShowException(&exception); - } - } - return 0; -} -//---------------------------------------------------------------------------