query.h

来自「邮件管理系统... 方便的管理邮件数据库系统」· C头文件 代码 · 共 35 行

H
35
字号
//---------------------------------------------------------------------------

#ifndef QueryH
#define QueryH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Grids.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TQueryForm : public TForm
{
__published:	// IDE-managed Components
        TStringGrid *StringGrid1;
        TLabeledEdit *LabeledEdit5;
        TLabeledEdit *LabeledEdit6;
        TSpeedButton *SpeedButton1;
        TLabeledEdit *LabeledEdit1;
        void __fastcall StringGrid1DrawCell(TObject *Sender, int ACol,
          int ARow, TRect &Rect, TGridDrawState State);
        void __fastcall SpeedButton1Click(TObject *Sender);
        void __fastcall FormShow(TObject *Sender);
private:	// User declarations
public:		// User declarations
        __fastcall TQueryForm(TComponent* Owner);
        char QueryTag;
};
//---------------------------------------------------------------------------
extern PACKAGE TQueryForm *QueryForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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