home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++ Builder
- //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USEFORM("Event1.cpp", frmEvents);
- USEDATAMODULE("Event2.cpp", dmEvents);
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->CreateForm(__classid(TfrmEvents), &frmEvents);
- Application->CreateForm(__classid(TdmEvents), &dmEvents);
- Application->Run();
-
- return 0;
- }
- //---------------------------------------------------------------------------
-