home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USEFORM("main.cpp", FmMain);
- USERES("dberrors.res");
- USEDATAMODULE("DM1.cpp", DM);
- USEFORM("About.cpp", FmAboutBox);
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->CreateForm(__classid(TFmMain), &FmMain);
- Application->CreateForm(__classid(TDM), &DM);
- Application->CreateForm(__classid(TFmAboutBox), &FmAboutBox);
- Application->Run();
-
- return 0;
- }
- //---------------------------------------------------------------------------
-