home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / CTRLGRID.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-15  |  770 b   |  20 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl\vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("ABOUT.CPP", FMAboutBox);
  6. USEFORM("CTRLFORM.CPP", FmCtrlGrid);
  7. USEDATAMODULE("DM.CPP", DM1);
  8. //---------------------------------------------------------------------
  9. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  10. {
  11.     Application->Initialize();
  12.     Application->CreateForm(__classid(TFmCtrlGrid), &FmCtrlGrid);
  13.     Application->CreateForm(__classid(TFMAboutBox), &FMAboutBox);
  14.     Application->CreateForm(__classid(TDM1), &DM1);
  15.     Application->Run();
  16.  
  17.     return 0;
  18. }
  19. //---------------------------------------------------------------------------
  20.