FrmCctvImgF.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmCctvImgFH
  3. #define FrmCctvImgFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <ADODB.hpp>
  11. #include <DB.hpp>
  12. #include "CDSFacilityF.h"
  13. #include "cxContainer.hpp"
  14. #include "cxControls.hpp"
  15. #include "cxEdit.hpp"
  16. #include "cxGraphics.hpp"
  17. #include "cxLabel.hpp"
  18. #include "cxLookAndFeelPainters.hpp"
  19. #include "cxLookAndFeels.hpp"
  20. #include "dxSkinBlack.hpp"
  21. #include "dxSkinBlue.hpp"
  22. #include "dxSkinsCore.hpp"
  23. #include "dxSkinMcSkin.hpp"
  24. //---------------------------------------------------------------------------
  25. class TFrmCctvImg : public TForm
  26. {
  27. __published: // IDE-managed Components
  28. TTimer *TmrShow;
  29. TPanel *PnlBack;
  30. TImage *ImgStop;
  31. TADOQuery *pADO;
  32. TcxLabel *lblErr1;
  33. TcxLabel *lblErr2;
  34. TcxLabel *lblErr3;
  35. TcxLabel *lblErr4;
  36. TcxLabel *lblErr6;
  37. TcxLabel *lblErr5;
  38. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  39. void __fastcall FormShow(TObject *Sender);
  40. void __fastcall TmrShowTimer(TObject *Sender);
  41. private: // User declarations
  42. public: // User declarations
  43. TCctvCtlr *FObj;
  44. void __fastcall LoadStopImage();
  45. bool __fastcall LoadDbImage();
  46. public: // User declarations
  47. __fastcall TFrmCctvImg(TComponent* Owner);
  48. };
  49. //---------------------------------------------------------------------------
  50. extern PACKAGE TFrmCctvImg *FrmCctvImg;
  51. //---------------------------------------------------------------------------
  52. #endif