home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / DBERRORS.CPP < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  25 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl\vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------------
  9. USEFORM("main.cpp", FmMain);
  10. USERES("dberrors.res");
  11. USEDATAMODULE("DM1.cpp", DM);
  12. USEFORM("About.cpp", FmAboutBox);
  13. //---------------------------------------------------------------------
  14. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  15. {
  16.         Application->Initialize();
  17.         Application->CreateForm(__classid(TFmMain), &FmMain);
  18.     Application->CreateForm(__classid(TDM), &DM);
  19.     Application->CreateForm(__classid(TFmAboutBox), &FmAboutBox);
  20.     Application->Run();
  21.  
  22.         return 0;
  23. }
  24. //---------------------------------------------------------------------------
  25.