home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / LOOKUPEX.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  985b  |  24 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. USEFORM("lookup.cpp", fmLookup);
  10. USERES("lookupex.res");
  11. USEFORM("About.cpp", fmAbout);
  12. USEDATAMODULE("maindata.cpp", DMMain);
  13. //---------------------------------------------------------------------
  14. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  15. {
  16.     Application->Initialize();
  17.     Application->CreateForm(__classid(TfmLookup), &fmLookup);
  18.     Application->CreateForm(__classid(TDMMain), &DMMain);
  19.     Application->Run();
  20.  
  21.     return 0;
  22. }
  23. //---------------------------------------------------------------------------
  24.