home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / CBROWSE.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  864b  |  21 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. USERES("CBROWSE.res");
  10. USEFORM("CALBROWS.CPP", CalendarBrowser);
  11. //---------------------------------------------------------------------
  12. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  13. {
  14.     Application->Initialize();
  15.     Application->CreateForm(__classid(TCalendarBrowser), &CalendarBrowser);
  16.     Application->Run();
  17.  
  18.     return 0;
  19. }
  20. //---------------------------------------------------------------------------
  21.