home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / FIND.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  1KB  |  26 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl\vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------------
  9. USERES("find.res");
  10. USEFORM("FindCust.cpp", fmFindCust);
  11. USEFORM("CUST.CPP", fmCustomers);
  12. USEFORM("ABOUT.CPP", fmAboutBox);
  13. USEDATAMODULE("DM.cpp", DM2);
  14. //---------------------------------------------------------------------
  15. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  16. {
  17.     Application->Initialize();
  18.     Application->CreateForm(__classid(TfmCustomers), &fmCustomers);
  19.     Application->CreateForm(__classid(TfmFindCust), &fmFindCust);
  20.     Application->CreateForm(__classid(TDM2), &DM2);
  21.     Application->Run();
  22.  
  23.     return 0;
  24. }
  25. //---------------------------------------------------------------------------
  26.