⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wizard.h

📁 里面是c++builder6编程实例教程里面的所有源代码,有11章
💻 H
字号:
//----------------------------------------------------------------------------
#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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -