dusergroup.h
来自「一套BCB6开发的电话管理系统」· C头文件 代码 · 共 41 行
H
41 行
//---------------------------------------------------------------------------
#ifndef DUserGroupH
#define DUserGroupH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ADODB.hpp>
#include <DB.hpp>
#include <IniFiles.hpp>
//---------------------------------------------------------------------------
#include "UserGroup.h"
#include "TelSystemDM.h"
class TDlgUserGroup : public TForm
{
__published: // IDE-managed Components
TLabel *Label1;
TLabel *Label2;
TEdit *ETGroupID;
TEdit *ETGroupName;
TBitBtn *OKBtn;
TBitBtn *CancelBtn;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall OKBtnClick(TObject *Sender);
private: // User declarations
bool bNew;
UserGroup& grp;
TDMTelSys* pDMTelSys;
TIniFile *pMsgIniFile;
public: // User declarations
__fastcall TDlgUserGroup( bool bNew, UserGroup& grp,TIniFile *pMessageIniFile,
TDMTelSys* pDMTelSys, TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDlgUserGroup *DlgUserGroup;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?