goodsview.h

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

H
51
字号
//---------------------------------------------------------------------------
#ifndef GoodsViewH
#define GoodsViewH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "DateEdit.hpp"
#include "fpanel.h"
#include "ListBaseForm.h"
#include "SDComboBox.h"
#include "SDEdit.h"
#include "SDGrid.h"
#include <Buttons.hpp>
#include <Grids.hpp>
#include <Mask.hpp>
#include <ComCtrls.hpp>
//---------------------------------------------------------------------------
class PACKAGE TfrmGoodsView;
class  TfrmGoodsView : public TListBaseForm
{
__published:	// IDE-managed Components
        TSDGrid *sgGrid;
      void __fastcall FormShow(TObject *Sender);
      void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private:	// User declarations
      void __fastcall SetHeadValue(int Index ,AnsiString Value);
      void __fastcall SetDetailValue(int Index, AnsiString Value);
public:		// User declarations
      AnsiString FormIniFile;
      AnsiString __fastcall GetDetailValue(int FieldIndex);
      AnsiString __fastcall GetHeadValue(int Index);
       __fastcall TfrmGoodsView(TComponent* Owner);

      void __fastcall InitEditControl();
      void __fastcall ClearControl();
      void __fastcall GetDataFromComObject(int Section);
      void __fastcall SendDataToComObject(int Section);
      void __fastcall WaitUserInput(int Section);
      void __fastcall RefreshGridData(int mAction);
      void __fastcall DisplayBill();
      void __fastcall GetBill(AnsiString BillID);
      void __fastcall FillGridWithData();
      void __fastcall ChangeToBrowseState(bool Browse);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmGoodsView *frmGoodsView;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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