12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- //---------------------------------------------------------------------------
- #ifndef FrmInitializeFH
- #define FrmInitializeFH
- //---------------------------------------------------------------------------
- #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 "cxContainer.hpp"
- #include "cxControls.hpp"
- #include "cxEdit.hpp"
- #include "cxGraphics.hpp"
- #include "cxLabel.hpp"
- #include "cxLookAndFeelPainters.hpp"
- #include "cxLookAndFeels.hpp"
- #include "cxProgressBar.hpp"
- #include "dxSkinBlack.hpp"
- #include "dxSkinBlue.hpp"
- #include "dxSkinsCore.hpp"
- #include "IdAntiFreeze.hpp"
- #include "IdAntiFreezeBase.hpp"
- #include "IdBaseComponent.hpp"
- #include "IdComponent.hpp"
- #include "IdExplicitTLSClientServerBase.hpp"
- #include "IdFTP.hpp"
- #include "IdTCPClient.hpp"
- #include "IdTCPConnection.hpp"
- #include "dxSkinMcSkin.hpp"
- //---------------------------------------------------------------------------
- class TFrmInitialize : public TForm
- {
- __published: // IDE-managed Components
- TTimer *TmrShow;
- TShape *ShpTitle;
- TcxProgressBar *cxProgressBar1;
- TcxLabel *LblStatus;
- TcxLabel *cxLabel1;
- TcxLabel *cxLabel2;
- TcxLabel *cxLabel3;
- TcxLabel *cxLabel4;
- TcxLabel *cxLabel5;
- TcxLabel *cxLabel6;
- TcxLabel *cxLabel7;
- TcxLabel *cxLabel8;
- TcxLabel *cxLabel9;
- TcxLabel *cxLabel10;
- TcxLabel *cxLabel11;
- TcxLabel *cxLabel12;
- TcxLabel *cxLabel13;
- TcxLabel *cxLabel14;
- TcxLabel *cxLabel15;
- TIdFTP *IdFtp;
- void __fastcall FormShow(TObject *Sender);
- void __fastcall TmrShowTimer(TObject *Sender);
- void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
- private: // User declarations
- public:
- DWORD FThreadId;
- bool __fastcall VmsFtpConnect();
- bool __fastcall VmsFtpFileDownload(String AOrgFile, String ADstFile);
- void __fastcall VmsFtpDisconnect();
- bool __fastcall UploadVmsVideoFiles();
- public: // User declarations
- __fastcall TFrmInitialize(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- //extern PACKAGE TFrmInitialize *FrmInitialize;
- //---------------------------------------------------------------------------
- #endif
|