FrmInitializeF.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmInitializeFH
  3. #define FrmInitializeFH
  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. #include "cxContainer.hpp"
  20. #include "cxControls.hpp"
  21. #include "cxEdit.hpp"
  22. #include "cxGraphics.hpp"
  23. #include "cxLabel.hpp"
  24. #include "cxLookAndFeelPainters.hpp"
  25. #include "cxLookAndFeels.hpp"
  26. #include "cxProgressBar.hpp"
  27. #include "dxSkinBlack.hpp"
  28. #include "dxSkinBlue.hpp"
  29. #include "dxSkinsCore.hpp"
  30. #include "IdAntiFreeze.hpp"
  31. #include "IdAntiFreezeBase.hpp"
  32. #include "IdBaseComponent.hpp"
  33. #include "IdComponent.hpp"
  34. #include "IdExplicitTLSClientServerBase.hpp"
  35. #include "IdFTP.hpp"
  36. #include "IdTCPClient.hpp"
  37. #include "IdTCPConnection.hpp"
  38. #include "dxSkinMcSkin.hpp"
  39. //---------------------------------------------------------------------------
  40. class TFrmInitialize : public TForm
  41. {
  42. __published: // IDE-managed Components
  43. TTimer *TmrShow;
  44. TShape *ShpTitle;
  45. TcxProgressBar *cxProgressBar1;
  46. TcxLabel *LblStatus;
  47. TcxLabel *cxLabel1;
  48. TcxLabel *cxLabel2;
  49. TcxLabel *cxLabel3;
  50. TcxLabel *cxLabel4;
  51. TcxLabel *cxLabel5;
  52. TcxLabel *cxLabel6;
  53. TcxLabel *cxLabel7;
  54. TcxLabel *cxLabel8;
  55. TcxLabel *cxLabel9;
  56. TcxLabel *cxLabel10;
  57. TcxLabel *cxLabel11;
  58. TcxLabel *cxLabel12;
  59. TcxLabel *cxLabel13;
  60. TcxLabel *cxLabel14;
  61. TcxLabel *cxLabel15;
  62. TIdFTP *IdFtp;
  63. void __fastcall FormShow(TObject *Sender);
  64. void __fastcall TmrShowTimer(TObject *Sender);
  65. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  66. private: // User declarations
  67. public:
  68. DWORD FThreadId;
  69. bool __fastcall VmsFtpConnect();
  70. bool __fastcall VmsFtpFileDownload(String AOrgFile, String ADstFile);
  71. void __fastcall VmsFtpDisconnect();
  72. bool __fastcall UploadVmsVideoFiles();
  73. public: // User declarations
  74. __fastcall TFrmInitialize(TComponent* Owner);
  75. };
  76. //---------------------------------------------------------------------------
  77. //extern PACKAGE TFrmInitialize *FrmInitialize;
  78. //---------------------------------------------------------------------------
  79. #endif