home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / FIND.CPP < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  26 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. 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.