showcourse.h
来自「C++ Builder数据库开发经典案例解析 示例程序都是在C++ Build」· C头文件 代码 · 共 38 行
H
38 行
//---------------------------------------------------------------------------
#ifndef showcourseH
#define showcourseH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Grids.hpp>
#include <DB.hpp>
#include <DBTables.hpp>
//---------------------------------------------------------------------------
class TfmShowCourse : public TForm
{
__published: // IDE-managed Components
TStringGrid *StringGrid1;
TGroupBox *GroupBox1;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TEdit *edStuNum;
TEdit *edStuName;
TEdit *edStuClass;
TQuery *queQuery;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall edStuNumKeyPress(TObject *Sender, char &Key);
void __fastcall StringGrid1DrawCell(TObject *Sender, int ACol,
int ARow, TRect &Rect, TGridDrawState State);
private: // User declarations
public: // User declarations
__fastcall TfmShowCourse(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TfmShowCourse *fmShowCourse;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?