settlemode.h

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

H
65
字号
//---------------------------------------------------------------------------
#ifndef SettleModeH
#define SettleModeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "RecBaseForm.h"
#include <ComCtrls.hpp>
#include <ImgList.hpp>
#include <Menus.hpp>
#include <ToolWin.hpp>
#include "fpanel.h"
#include "SDEdit.h"
#include "SDGrid.h"
#include <Grids.hpp>
#include "SDComboBox.h"
#include <ExtCtrls.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class PACKAGE TfrmSettleMode;
class TfrmSettleMode : public TRecBaseForm
{
__published:	// IDE-managed Components
    TFloatPanel *FloatPanel1;
    TSDEdit *seSettleModeCode;
    TSDEdit *seSettleModeName;
    TLabel *Label1;
    TLabel *Label2;
    TLabel *Label3;
    TLabel *Label4;
    TLabel *Label5;
    TGroupBox *GroupBox1;
    TRadioButton *rbSettleModeGlDir0;
    TRadioButton *rbSettleModeGlDir1;
    TMemo *memSettleModeDesc;
    TPanel *Panel1;
    TSDGrid *sgSettleMode;
    TSDEdit *seSettleModeGlKm;
    void __fastcall FormShow(TObject *Sender);
    void __fastcall seSettleModeGlKmButtonClick(TObject *Sender);
        void __fastcall seSettleModeCodeKeyDown(TObject *Sender, WORD &Key,
          TShiftState Shift);
        void __fastcall sgSettleModeClick(TObject *Sender);
        void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private:	// User declarations
    TComResultSet *g_sdRsGlkm;   //add 2003-02-19
    void __fastcall ClearControl(bool BringToNext);
    void __fastcall GetDataFromComObject();
    void __fastcall SendDataToComObject();

    void __fastcall WaitUserInput();
    AnsiString __fastcall GetDataToGrid();
    void __fastcall RefreshGridData(int mAction);
    void __fastcall FillGridWithData();
    void __fastcall InitEditControl();
public:		// User declarations
    __fastcall TfrmSettleMode(TComponent* Owner, HWND chWnd, AnsiString MidCode,AnsiString WhereStr);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmSettleMode *frmSettleMode;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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