home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
prezent
/
cb
/
data.z
/
EVENT2.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-01-16
|
1KB
|
34 lines
//----------------------------------------------------------------------------
//Borland C++ Builder
//Copyright (c) 1987 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef Event1H
#define Event1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <DB.hpp>
#include <DBTables.hpp>
#include "IBCtrls.h"
//---------------------------------------------------------------------------
class TdmEvents : public TDataModule
{
__published: // IDE-managed Components
TDatabase *Database1;
TStoredProc *StoredProc1;
TIBEventAlerter *IBEventAlerter1;
void __fastcall IBEventAlerter1EventAlert(TObject *Sender,
AnsiString EventName, long EventCount, bool &CancelAlerts);
void __fastcall dmEventsCreate(TObject *Sender);
private: // User declarations
public: // User declarations
virtual __fastcall TdmEvents(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TdmEvents *dmEvents;
//---------------------------------------------------------------------------
#endif