FrmInitializeF.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. //---------------------------------------------------------------------------
  39. class TFrmInitialize : public TForm
  40. {
  41. __published: // IDE-managed Components
  42. TTimer *TmrShow;
  43. TShape *ShpTitle;
  44. TcxProgressBar *cxProgressBar1;
  45. TcxLabel *LblStatus;
  46. TcxLabel *cxLabel1;
  47. TcxLabel *cxLabel2;
  48. TcxLabel *cxLabel3;
  49. TcxLabel *cxLabel4;
  50. TcxLabel *cxLabel5;
  51. TcxLabel *cxLabel6;
  52. TcxLabel *cxLabel7;
  53. TcxLabel *cxLabel8;
  54. TcxLabel *cxLabel9;
  55. TcxLabel *cxLabel10;
  56. TcxLabel *cxLabel11;
  57. TcxLabel *cxLabel12;
  58. TcxLabel *cxLabel13;
  59. TcxLabel *cxLabel14;
  60. TcxLabel *cxLabel15;
  61. TIdFTP *IdFtp;
  62. void __fastcall FormShow(TObject *Sender);
  63. void __fastcall TmrShowTimer(TObject *Sender);
  64. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  65. private: // User declarations
  66. public:
  67. DWORD FThreadId;
  68. bool __fastcall VmsFtpConnect();
  69. bool __fastcall VmsFtpFileDownload(String AOrgFile, String ADstFile);
  70. void __fastcall VmsFtpDisconnect();
  71. bool __fastcall UploadVmsVideoFiles();
  72. public: // User declarations
  73. __fastcall TFrmInitialize(TComponent* Owner);
  74. };
  75. //---------------------------------------------------------------------------
  76. //extern PACKAGE TFrmInitialize *FrmInitialize;
  77. //---------------------------------------------------------------------------
  78. #endif