home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / LOOKUPEX.CPP < prev    next >
C/C++ Source or Header  |  1997-02-28  |  990b  |  24 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("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.