//--------------------------------------------------------------------------- #ifndef UnboundColumnsDemoDataH #define UnboundColumnsDemoDataH //--------------------------------------------------------------------------- #include #include #include #include #include "cxClasses.hpp" #include "cxGridTableView.hpp" #include "cxStyles.hpp" #include #include "cxDBEditRepository.hpp" #include "cxEdit.hpp" #include "cxEditRepositoryItems.hpp" #include "cxGridCardView.hpp" #include #include #include //--------------------------------------------------------------------------- class TUnboundColumnsDemoDataDM : public TDataModule { __published: // IDE-managed Components TDatabase *Database; TTable *tblCustomers; TAutoIncField *tblCustomersID; TStringField *tblCustomersFIRSTNAME; TStringField *tblCustomersLASTNAME; TStringField *tblCustomersCOMPANYNAME; TIntegerField *tblCustomersPAYMENTTYPE; TIntegerField *tblCustomersPRODUCTID; TBooleanField *tblCustomersCUSTOMER; TDateTimeField *tblCustomersPURCHASEDATE; TCurrencyField *tblCustomersPAYMENTAMOUNT; TIntegerField *tblCustomersCOPIES; TDataSource *dsCustomers; private: // User declarations public: // User declarations __fastcall TUnboundColumnsDemoDataDM(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TUnboundColumnsDemoDataDM *UnboundColumnsDemoDataDM; //--------------------------------------------------------------------------- #endif