mpsd.h

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

H
48
字号
//---------------------------------------------------------------------------

#ifndef MpsdH
#define MpsdH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "fpanel.h"
#include "ListBaseForm.h"
#include "SDEdit.h"
#include "SDGrid.h"
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <Grids.hpp>
//---------------------------------------------------------------------------
class TfrmMpsd : public TListBaseForm
{
__published:	// IDE-managed Components
        TFloatPanel *FloatPanel1;
        TLabel *Label1;
        TLabel *Label2;
        TLabel *Label3;
        TSDEdit *seMpsGoods;
        TSDEdit *seMpsRQty;
        TSDEdit *seMpsRDate;
        TSDGrid *sgMpsd;
        TBitBtn *BitBtn1;
        void __fastcall FormShow(TObject *Sender);
private:	// User declarations
        AnsiString m_SQL;      //查询语句
       void __fastcall InitEditControl();
       void __fastcall GetDataFromComObject(int Section);
       void __fastcall SendDataToComObject(int Section);
       void __fastcall WaitUserInput(int Section);
       void __fastcall DisplayBill();
       void __fastcall ChangeToBrowseState(bool Browse);
       void __fastcall GetBill(AnsiString BillID);
       void __fastcall FillGridWithData();
public:		// User declarations
        __fastcall TfrmMpsd(TComponent* Owner,AnsiString MpsGoods,AnsiString MpsRDate,AnsiString MpsRQty);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmMpsd *frmMpsd;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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