123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- //---------------------------------------------------------------------------
- #ifndef IHS0010MFH
- #define IHS0010MFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include <jpeg.hpp>
- #include <Buttons.hpp>
- #include <ImgList.hpp>
- #include <Graphics.hpp>
- #include <DB.hpp>
- #include <DBClient.hpp>
- #include <Provider.hpp>
- #include <Menus.hpp>
- #include <ComCtrls.hpp>
- #include <ADODB.hpp>
- #include <Dialogs.hpp>
- #include "cxButtons.hpp"
- #include "cxCalendar.hpp"
- #include "cxClasses.hpp"
- #include "cxContainer.hpp"
- #include "cxControls.hpp"
- #include "cxCustomData.hpp"
- #include "cxData.hpp"
- #include "cxDataStorage.hpp"
- #include "cxDropDownEdit.hpp"
- #include "cxEdit.hpp"
- #include "cxFilter.hpp"
- #include "cxGraphics.hpp"
- #include "cxGrid.hpp"
- #include "cxGridCustomTableView.hpp"
- #include "cxGridCustomView.hpp"
- #include "cxGridLevel.hpp"
- #include "cxGridTableView.hpp"
- #include "cxLabel.hpp"
- #include "cxLookAndFeelPainters.hpp"
- #include "cxLookAndFeels.hpp"
- #include "cxMaskEdit.hpp"
- #include "cxPC.hpp"
- #include "cxPCdxBarPopupMenu.hpp"
- #include "cxSpinEdit.hpp"
- #include "cxStyles.hpp"
- #include "cxTextEdit.hpp"
- #include "cxTimeEdit.hpp"
- #include "dxSkinBlack.hpp"
- #include "dxSkinBlue.hpp"
- #include "dxSkinsCore.hpp"
- #include "dxSkinscxPCPainter.hpp"
- #include "dxSkinMcSkin.hpp"
- //---------------------------------------------------------------------------
- class TIHS0010M : public TForm
- {
- __published: // IDE-managed Components
- TTimer *TmrRefresh;
- TShape *ShpList;
- TcxPageControl *PgList;
- TcxTabSheet *TsList;
- TShape *ShpTitle;
- TcxButton *BtnClose;
- TLabel *LblCaption;
- TPanel *Panel2;
- TcxButton *BtnSearch;
- TImage *ImgDesc1;
- TcxGrid *CxList;
- TcxGridTableView *TvList;
- TcxGridColumn *Column01;
- TcxGridColumn *Column02;
- TcxGridColumn *Column03;
- TcxGridLevel *GlList;
- TcxLabel *cxLabel1;
- TcxLabel *cxLabel2;
- TImage *ImgDesc2;
- TcxButton *BtnExlSave;
- TcxTimeEdit *DtStTime1;
- TcxTimeEdit *DtEdTime1;
- TADOQuery *ADOQry;
- TLabel *LblRecords;
- TDateTimePicker *DtEdTime;
- TDateTimePicker *DtEdDate;
- TDateTimePicker *DtStDate;
- TDateTimePicker *DtStTime;
- void __fastcall FormShow(TObject *Sender);
- void __fastcall TmrRefreshTimer(TObject *Sender);
- void __fastcall BtnSearchClick(TObject *Sender);
- void __fastcall BtnExlSaveClick(TObject *Sender);
- void __fastcall BtnCloseClick(TObject *Sender);
- void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
- void __fastcall TvListDataControllerFilterChanged(TObject *Sender);
- private: // User declarations
- void __fastcall CommClose();
- String FTitle;
- TcxDataController *m_pGDC;
- String FStDateTime;
- String FEdDateTime;
- public: // User declarations
- __fastcall TIHS0010M(TComponent* Owner);
- void __fastcall OnMessage(TMessage &Msg);
- void __fastcall FormInit();
- void __fastcall RefreshData();
- void __fastcall SelHistory();
- void __fastcall DspHistory();
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TIHS0010M *IHS0010M;
- //---------------------------------------------------------------------------
- #endif
|