VDSM101MF.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //---------------------------------------------------------------------------
  2. #ifndef VDSM101MFH
  3. #define VDSM101MFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <DB.hpp>
  10. #include <DBClient.hpp>
  11. #include <FMTBcd.hpp>
  12. #include <Provider.hpp>
  13. #include <SqlExpr.hpp>
  14. #include <Menus.hpp>
  15. #include <ExtCtrls.hpp>
  16. #include <Graphics.hpp>
  17. #include <ComCtrls.hpp>
  18. #include <ADODB.hpp>
  19. //---------------------------------------------------------------------------
  20. #include "DataTypesF.h"
  21. #include "cxButtons.hpp"
  22. #include "cxContainer.hpp"
  23. #include "cxControls.hpp"
  24. #include "cxDropDownEdit.hpp"
  25. #include "cxEdit.hpp"
  26. #include "cxGraphics.hpp"
  27. #include "cxGroupBox.hpp"
  28. #include "cxLabel.hpp"
  29. #include "cxLookAndFeelPainters.hpp"
  30. #include "cxLookAndFeels.hpp"
  31. #include "cxMaskEdit.hpp"
  32. #include "cxSpinEdit.hpp"
  33. #include "cxTextEdit.hpp"
  34. #include "dxSkinBlue.hpp"
  35. #include "dxSkinsCore.hpp"
  36. //---------------------------------------------------------------------------
  37. class TVDSM101M : public TForm
  38. {
  39. __published: // IDE-managed Components
  40. TcxButton *BtnClose;
  41. TEdit *EdFocus;
  42. TcxGroupBox *cxGroupBox1;
  43. TShape *ShpList;
  44. TcxButton *BtnSave;
  45. TLabel *Label1;
  46. TImage *ImgDesc01;
  47. TImage *ImgDesc27;
  48. TLabel *Label3;
  49. TLabel *Label2;
  50. TImage *ImgDesc28;
  51. TcxComboBox *Cb_CMRA_DRCT_CD;
  52. TcxSpinEdit *Se_VDS_CMRA_NO;
  53. TcxSpinEdit *Se_DETECT_LANE;
  54. TcxTextEdit *EdCmraNm;
  55. TcxComboBox *CbCCAM;
  56. TcxLabel *cxLabel3;
  57. TImage *ImgDesc03;
  58. TcxTextEdit *Ed_ROAD_NAME;
  59. TLabel *Label4;
  60. TcxTextEdit *Ed_CROSS_NAME;
  61. TLabel *Label5;
  62. TLabel *Label6;
  63. TcxTextEdit *Ed_DIR_NAME;
  64. TLabel *Label7;
  65. void __fastcall FormShow(TObject *Sender);
  66. void __fastcall BtnCloseClick(TObject *Sender);
  67. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  68. void __fastcall BtnSaveClick(TObject *Sender);
  69. private: // User declarations
  70. void __fastcall CommClose();
  71. public:
  72. int FDbMode;
  73. bool FUpdated;
  74. public: // User declarations
  75. __fastcall TVDSM101M(TComponent* Owner);
  76. String __fastcall GetCCAM_NMBR();
  77. };
  78. //---------------------------------------------------------------------------
  79. extern PACKAGE TVDSM101M *VDSM101M;
  80. //---------------------------------------------------------------------------
  81. #endif