[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppBuilderVclProject1CPP
This file should not be touched (unless you're a pro who knows what he's doing).
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppBuilderVclProject1CPP
(C++ Builder) Project1.cpp (VCL)
By default at start-up its code is://---------------------------------------------------------------------------//--------------------------------------------------------------------------- USEFORM("Unit1.cpp", Form1); //--------------------------------------------------------------------------- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { try { Application->Initialize(); 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; } //---------------------------------------------------------------------------
- include <vcl.h>
- pragma hdrstop
This file should not be touched (unless you're a pro who knows what he's doing).
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
