worksect.h
来自「一个以前收集的基于C/S架构的ERP客户端源代码」· C头文件 代码 · 共 54 行
H
54 行
//---------------------------------------------------------------------------
#ifndef WorkSectH
#define WorkSectH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "fpanel.h"
#include "RecBaseForm.h"
#include "SDEdit.h"
#include "SDGrid.h"
#include <ComCtrls.hpp>
#include <Grids.hpp>
#include <ImgList.hpp>
#include <Menus.hpp>
#include <ToolWin.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class PACKAGE TfrmWorkSect;
class TfrmWorkSect : public TRecBaseForm
{
__published: // IDE-managed Components
TFloatPanel *FloatPanel1;
TSDGrid *sgWorkSect;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
TSDEdit *seWorkSectCode; //班制代码
TSDEdit *seWorkSectName; //班制名称
TSDEdit *seWorkSectSDate; //开始时间
TSDEdit *seWorkSectEDate; //结束时间
TSDEdit *seWorkSecQty; //累计时间
void __fastcall FormShow(TObject *Sender);
void __fastcall sgWorkSectClick(TObject *Sender);
private: // User declarations
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 TfrmWorkSect(TComponent* Owner, HWND chWnd, AnsiString MidCode,AnsiString WhereStr);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmWorkSect *frmWorkSect;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?