home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / CALBROWS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-15  |  1.2 KB  |  34 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef calbrowsH
  3. #define calbrowsH
  4. //---------------------------------------------------------------------------
  5. #include <Forms.hpp>
  6. #include <Calendar.hpp>
  7. #include <Grids.hpp>
  8. #include <Controls.hpp>
  9. #include <Classes.hpp>
  10. #include <Buttons.hpp>
  11. #include <StdCtrls.hpp>
  12. //---------------------------------------------------------------------------
  13. class TCalendarBrowser : public TForm
  14. {
  15. __published:
  16.     TCalendar *Calendar1;
  17.     TBitBtn *BitBtn1;
  18.     TBitBtn *BitBtn2;
  19.     TBitBtn *BitBtn3;
  20.     TBitBtn *BitBtn4;
  21.     void __fastcall BitBtn4Click(TObject *Sender);
  22.     void __fastcall BitBtn2Click(TObject *Sender);
  23.     void __fastcall BitBtn3Click(TObject *Sender);
  24.     void __fastcall BitBtn1Click(TObject *Sender);
  25.     void __fastcall Calendar1Change(TObject *Sender);
  26. private:        // private user declarations
  27. public:         // public user declarations
  28.     virtual __fastcall TCalendarBrowser(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TForCalendarBrowserorCalendarBrowser;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.