formset.h

来自「一个以前收集的基于C/S架构的ERP客户端源代码」· C头文件 代码 · 共 56 行

H
56
字号
//---------------------------------------------------------------------------

#ifndef FormSetH
#define FormSetH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "SDEdit.h"
#include <Buttons.hpp>
#include "SDComboBox.h"
#include "ClientDcom.h"
#include "KSFunction.h"
#include "CommFunction.h"
//---------------------------------------------------------------------------
class PACKAGE TfrmFormSet;
class TfrmFormSet : public TForm
{
__published:	// IDE-managed Components
  TGroupBox *gbQuery;
  TCheckBox *ckQuery;
  TLabel *Label1;
  TSDEdit *seQuery;
  TBitBtn *bbOK;
  TBitBtn *bbCancel;
  TCheckBox *ckGenrate;
    TLabel *Label2;
    TSDComboBox *scReportCode;
  void __fastcall ckQueryClick(TObject *Sender);
  void __fastcall bbOKClick(TObject *Sender);
    void __fastcall FormShow(TObject *Sender);
private:	// User declarations
  AnsiString fFormName;
  int __fastcall GetAutoQuery();
  void __fastcall SetAutoQuery(int value);
  AnsiString __fastcall GetQueryString();
  void __fastcall SetQueryString(AnsiString value);
  int __fastcall GetAutoGenrate();
  void __fastcall SetAutoGenrate(int value);
  AnsiString ReportCode;
  bool  fCancelFormSet;
public:		// User declarations
  __fastcall TfrmFormSet(TComponent* Owner);
  __fastcall TfrmFormSet(TComponent* Owner,AnsiString FormName);
  AnsiString AutoCodeString;//自动编码
  __property int AutoQuery={read=GetAutoQuery,write=SetAutoQuery};
  __property AnsiString QueryString={read=GetQueryString,write=SetQueryString};
  __property int AutoCode={read=GetAutoGenrate,write=SetAutoGenrate};
  __property bool CancelFormSet={read=fCancelFormSet};
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmFormSet *frmFormSet;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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