unit1.h
来自「C++Builder高级应用开发指南随书源码」· C头文件 代码 · 共 44 行
H
44 行
//----------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//----------------------------------------------------------------------------
#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 <DBGrids.hpp>
#include <Db.hpp>
#include <DBTables.hpp>
#include <ExtCtrls.hpp>
#include <Grids.hpp>
//----------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:
TStringField *Table1NAME;
TSmallintField *Table1SIZE;
TSmallintField *Table1WEIGHT;
TStringField *Table1AREA;
TDBNavigator *DBNavigator;
TPanel *Panel1;
TDataSource *DataSource1;
TTable *Table1;
TDBGrid *DBGrid1;
void __fastcall FormCreate(TObject *Sender);
private:
// private declarations
public:
// public declarations
__fastcall TForm1(TComponent *Owner);
};
//----------------------------------------------------------------------------
extern TForm1 *Form1;
//----------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?