Wizard.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:
Delphi/CppBuilder
开发平台:
C++ Builder
- //----------------------------------------------------------------------------
- #ifndef WizardH
- #define WizardH
- //----------------------------------------------------------------------------
- #include <SysUtils.hpp>
- #include <Windows.hpp>
- #include <Messages.hpp>
- #include <Classes.hpp>
- #include <Graphics.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <DBCtrls.hpp>
- #include <DB.hpp>
- #include <Db.hpp>
- #include <DBTables.hpp>
- #include <ExtCtrls.hpp>
- #include <Mask.hpp>
- //----------------------------------------------------------------------------
- class TForm2 : public TForm
- {
- __published:
- TStringField *Table1NAME;
- TSmallintField *Table1SIZE;
- TSmallintField *Table1WEIGHT;
- TStringField *Table1AREA;
- TBlobField *Table1BMP;
- TScrollBox *ScrollBox;
- TLabel *Label1;
- TDBEdit *EditNAME;
- TLabel *Label2;
- TDBEdit *EditSIZE;
- TLabel *Label3;
- TDBEdit *EditWEIGHT;
- TLabel *Label4;
- TDBEdit *EditAREA;
- TLabel *Label5;
- TDBEdit *EditBMP;
- TDBNavigator *DBNavigator;
- TPanel *Panel1;
- TDataSource *DataSource1;
- TPanel *Panel2;
- TTable *Table1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall ScrollBoxClick(TObject *Sender);
- private:
- // private declarations
- public:
- // public declarations
- __fastcall TForm2(TComponent *Owner);
- };
- //----------------------------------------------------------------------------
- extern TForm2 *Form2;
- //----------------------------------------------------------------------------
- #endif