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

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef Event1H
  7. #define Event1H
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <DB.hpp>
  14. #include <DBTables.hpp>
  15. #include "IBCtrls.h"
  16. //---------------------------------------------------------------------------
  17. class TdmEvents : public TDataModule
  18. {
  19. __published:    // IDE-managed Components 
  20.     TDatabase *Database1;
  21.     TStoredProc *StoredProc1;
  22.     TIBEventAlerter *IBEventAlerter1;
  23.     void __fastcall IBEventAlerter1EventAlert(TObject *Sender,
  24.       AnsiString EventName, long EventCount, bool &CancelAlerts);
  25.     void __fastcall dmEventsCreate(TObject *Sender);
  26. private:        // User declarations
  27. public:         // User declarations
  28.     virtual __fastcall TdmEvents(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TdmEvents *dmEvents;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.