Wizard.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //----------------------------------------------------------------------------
  2. #ifndef WizardH
  3. #define WizardH
  4. //----------------------------------------------------------------------------
  5. #include <SysUtils.hpp>
  6. #include <Windows.hpp>
  7. #include <Messages.hpp>
  8. #include <Classes.hpp>
  9. #include <Graphics.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <DBCtrls.hpp>
  14. #include <DB.hpp>
  15. #include <Db.hpp>
  16. #include <DBTables.hpp>
  17. #include <ExtCtrls.hpp>
  18. #include <Mask.hpp>
  19. //----------------------------------------------------------------------------
  20. class TForm2 : public TForm
  21. {
  22. __published:
  23. TStringField *Table1NAME;
  24. TSmallintField *Table1SIZE;
  25. TSmallintField *Table1WEIGHT;
  26. TStringField *Table1AREA;
  27. TBlobField *Table1BMP;
  28. TScrollBox *ScrollBox;
  29. TLabel *Label1;
  30. TDBEdit *EditNAME;
  31. TLabel *Label2;
  32. TDBEdit *EditSIZE;
  33. TLabel *Label3;
  34. TDBEdit *EditWEIGHT;
  35. TLabel *Label4;
  36. TDBEdit *EditAREA;
  37. TLabel *Label5;
  38. TDBEdit *EditBMP;
  39. TDBNavigator *DBNavigator;
  40. TPanel *Panel1;
  41. TDataSource *DataSource1;
  42. TPanel *Panel2;
  43. TTable *Table1;
  44. void __fastcall FormCreate(TObject *Sender);
  45.         void __fastcall ScrollBoxClick(TObject *Sender);
  46. private:
  47. // private declarations
  48. public:
  49. // public declarations
  50. __fastcall TForm2(TComponent *Owner);
  51. };
  52. //----------------------------------------------------------------------------
  53. extern TForm2 *Form2;
  54. //----------------------------------------------------------------------------
  55. #endif