quform.h

来自「速达开源ERP系统」· C头文件 代码 · 共 75 行

H
75
字号
//---------------------------------------------------------------------------

#ifndef QuFormH
#define QuFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "fpanel.h"
#include "SDComboBox.h"
#include "SDGrid.h"
#include <Grids.hpp>
#include "SDEdit.h"
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
#include "gvar.h"
#include "DateEdit.hpp"
#include <Mask.hpp>
//---------------------------------------------------------------------------
class PACKAGE TfrmQuForm;
class TfrmQuForm : public TForm
{
__published:	// IDE-managed Components
        TGroupBox *GroupBox1;
        TStringGrid *sgQuery;
        TGroupBox *GroupBox2;
        TSDEdit *seQuery;
        TSDComboBox *scBool;
        TSDComboBox *scLogic;
        TGroupBox *GroupBox3;
        TListBox *ListItem;
        TGroupBox *GroupBox4;
        TRadioButton *RadioNull;
        TRadioButton *RadioAnd;
        TRadioButton *RadioOr;
        TPanel *Panel2;
        TLabel *Label1;
        TLabel *Label2;
        TLabel *ProName;
        TBitBtn *btOk;
        TBitBtn *btCacel;
        TBitBtn *btAdd;
        TBitBtn *btRemove;
        TBitBtn *btReSet;
        TDateEdit *sdQuery;
        void __fastcall FormCreate(TObject *Sender);
        void __fastcall btRemoveClick(TObject *Sender);
        void __fastcall btReSetClick(TObject *Sender);
        void __fastcall btOkClick(TObject *Sender);
        void __fastcall btCacelClick(TObject *Sender);
        void __fastcall btAddClick(TObject *Sender);
        void __fastcall ListItemClick(TObject *Sender);
        void __fastcall scLogicChange(TObject *Sender);
        void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
        void __fastcall seQueryButtonClick(TObject *Sender);
private:	// User declarations
       int temRow;
       AnsiString FFormName;
       TComServer *FormQuery;
       AnsiString  m_CreateSqlString;
       bool     m_CancelQuery;
       void __fastcall FormQuerytype(AnsiString type);
public:		// User declarations
       __property AnsiString CreateSqlString={read=m_CreateSqlString};
       __property bool CancelQuery={read=m_CancelQuery};
       __fastcall TfrmQuForm(TComponent* Owner);
       __fastcall TfrmQuForm(TComponent* Owner,AnsiString FormName);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmQuForm *frmQuForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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