123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- //---------------------------------------------------------------------------
- #ifndef TAS0050MFH
- #define TAS0050MFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <DB.hpp>
- #include <DBClient.hpp>
- #include <FMTBcd.hpp>
- #include <Provider.hpp>
- #include <SqlExpr.hpp>
- #include <Menus.hpp>
- #include <ExtCtrls.hpp>
- #include <Graphics.hpp>
- #include <ComCtrls.hpp>
- #include <ADODB.hpp>
- #include <Dialogs.hpp>
- #include <ExtDlgs.hpp>
- //---------------------------------------------------------------------------
- #include "WindowMsgF.h"
- #include "CDSAtrdF.h"
- #include "cxButtons.hpp"
- #include "cxContainer.hpp"
- #include "cxControls.hpp"
- #include "cxDropDownEdit.hpp"
- #include "cxEdit.hpp"
- #include "cxGraphics.hpp"
- #include "cxGroupBox.hpp"
- #include "cxLookAndFeelPainters.hpp"
- #include "cxLookAndFeels.hpp"
- #include "cxMaskEdit.hpp"
- #include "cxPC.hpp"
- #include "cxPCdxBarPopupMenu.hpp"
- #include "cxTextEdit.hpp"
- #include "dxSkinBlack.hpp"
- #include "dxSkinBlue.hpp"
- #include "dxSkinsCore.hpp"
- #include "dxSkinscxPCPainter.hpp"
- class TTAS0050M : public TForm
- {
- __published: // IDE-managed Components
- TTimer *TmrShow;
- TShape *ShpTitle;
- TcxButton *BtnClose;
- TLabel *LblCaption;
- TShape *ShpList;
- TEdit *EdFocus;
- TPanel *PnlBack;
- TcxGroupBox *cxGroupBox1;
- TcxPageControl *PgTab;
- TcxTabSheet *TsList01;
- TcxGroupBox *cxGroupBox2;
- TLabel *Label1;
- TImage *ImgDesc03;
- TcxButton *BtnSearch;
- TcxComboBox *CbAtrd;
- TcxComboBox *CbIfsc;
- TLabel *Label3;
- TImage *ImgDesc01;
- TDateTimePicker *DtDay;
- TLabel *Label2;
- TImage *ImgDesc02;
- TcxComboBox *CbAtrd1;
- TcxComboBox *CbIfsc1;
- void __fastcall FormShow(TObject *Sender);
- void __fastcall TmrShowTimer(TObject *Sender);
- void __fastcall BtnSearchClick(TObject *Sender);
- void __fastcall BtnCloseClick(TObject *Sender);
- void __fastcall PgTabDblClick(TObject *Sender);
- void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
- void __fastcall CbAtrdPropertiesChange(TObject *Sender);
- void __fastcall PgTabCanCloseEx(TObject *Sender, int ATabIndex, bool &ACanClose);
- void __fastcall CbAtrd1PropertiesChange(TObject *Sender);
- private: // User declarations
- void __fastcall CommClose();
- String FTitle;
- public:
- TList *m_pFormList;
- String FAtrdId, FAtrdNm;
- String FLinkId, FLinkNm;
- String FAtrdId1, FAtrdNm1;
- String FLinkId1, FLinkNm1;
- String FQryDay;
- TItsAtrdManager *MyItsAtrdManager;
- public: // User declarations
- __fastcall TTAS0050M(TComponent* Owner);
- void __fastcall FormInit();
- void __fastcall RefreshData();
-
- void __fastcall OnSubFormClose(TMessage Msg);
- BEGIN_MESSAGE_MAP
- VCL_MESSAGE_HANDLER(WM_SUBFORM_CLOSE, TMessage, OnSubFormClose);
- END_MESSAGE_MAP(TForm);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TTAS0050M *TAS0050M;
- //---------------------------------------------------------------------------
- #endif
|