home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / CTRLGRID.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  1KB  |  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("ABOUT.CPP", FMAboutBox);
  10. USEFORM("CTRLFORM.CPP", FmCtrlGrid);
  11. USEDATAMODULE("DM.CPP", DM1);
  12. //---------------------------------------------------------------------
  13. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  14. {
  15.     Application->Initialize();
  16.     Application->CreateForm(__classid(TFmCtrlGrid), &FmCtrlGrid);
  17.     Application->CreateForm(__classid(TFMAboutBox), &FMAboutBox);
  18.     Application->CreateForm(__classid(TDM1), &DM1);
  19.     Application->Run();
  20.  
  21.     return 0;
  22. }
  23. //---------------------------------------------------------------------------
  24.