FrmInitializeF.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. //---------------------------------------------------------------------------
  31. class TFrmInitialize : public TForm
  32. {
  33. __published: // IDE-managed Components
  34. TTimer *TmrShow;
  35. TShape *ShpTitle;
  36. TcxProgressBar *cxProgressBar1;
  37. TcxLabel *LblStatus;
  38. TcxLabel *cxLabel1;
  39. TcxLabel *cxLabel2;
  40. TcxLabel *cxLabel3;
  41. TcxLabel *cxLabel4;
  42. TcxLabel *cxLabel5;
  43. TcxLabel *cxLabel6;
  44. TcxLabel *cxLabel7;
  45. TcxLabel *cxLabel8;
  46. TcxLabel *cxLabel9;
  47. TcxLabel *cxLabel10;
  48. TcxLabel *cxLabel11;
  49. TcxLabel *cxLabel12;
  50. TcxLabel *cxLabel13;
  51. TcxLabel *cxLabel14;
  52. TcxLabel *cxLabel15;
  53. void __fastcall FormShow(TObject *Sender);
  54. void __fastcall TmrShowTimer(TObject *Sender);
  55. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  56. private: // User declarations
  57. public:
  58. DWORD FThreadId;
  59. public: // User declarations
  60. __fastcall TFrmInitialize(TComponent* Owner);
  61. };
  62. //---------------------------------------------------------------------------
  63. //extern PACKAGE TFrmInitialize *FrmInitialize;
  64. //---------------------------------------------------------------------------
  65. #endif