home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / EVENT1.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  2KB  |  44 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef Event2H
  7. #define Event2H
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. //---------------------------------------------------------------------------
  14. class TfrmEvents : public TForm
  15. {
  16. __published:    // IDE-managed Components 
  17.     TGroupBox *GroupBox1;
  18.     TButton *btnOpenDatabase;
  19.     TButton *btnCloseDatabase;
  20.     TGroupBox *GroupBox4;
  21.     TLabel *Label1;
  22.     TButton *btnGenerateEvent;
  23.     TEdit *ebEvent;
  24.     TGroupBox *GroupBox2;
  25.     TButton *btnRegisterEvents;
  26.     TMemo *moRegister;
  27.     TGroupBox *GroupBox3;
  28.     TButton *btnClearEvents;
  29.     TListBox *lbReceived;
  30.     void __fastcall FormDestroy(TObject *Sender);
  31.     void __fastcall btnOpenDatabaseClick(TObject *Sender);
  32.     void __fastcall btnCloseDatabaseClick(TObject *Sender);
  33.     void __fastcall btnGenerateEventClick(TObject *Sender);
  34.     void __fastcall btnRegisterEventsClick(TObject *Sender);
  35.     void __fastcall btnClearEventsClick(TObject *Sender);
  36. private:        // User declarations
  37. public:         // User declarations
  38.     virtual __fastcall TfrmEvents(TComponent* Owner);
  39. };
  40. //---------------------------------------------------------------------------
  41. extern TfrmEvents *frmEvents;
  42. //---------------------------------------------------------------------------
  43. #endif
  44.