telezoneinfo.h

来自「一套BCB6开发的电话管理系统」· C头文件 代码 · 共 44 行

H
44
字号
//---------------------------------------------------------------------------

#ifndef TeleZoneInfoH
#define TeleZoneInfoH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <IniFiles.hpp>
//---------------------------------------------------------------------------
#include "TeleZone.h"
class TDlgTeleZoneInfo : public TForm
{
__published:	// IDE-managed Components
        TLabel *Label1;
        TLabel *Label2;
        TLabel *Label3;
        TLabel *Label4;
        TLabel *Label5;
        TLabel *Label6;
        TComboBox *CBType;
        TEdit *ETCode;
        TEdit *ETZone;
        TEdit *ETLocation;
        TEdit *ETPrice;
        TEdit *ETUnit;
        TBitBtn *OKBtn;
        TBitBtn *CancelBtn;
        void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
        void __fastcall OKBtnClick(TObject *Sender);
private:	// User declarations
        bool bNew;
        TeleZone &tz;
        TIniFile *pMsgIniFile;
public:		// User declarations
        __fastcall TDlgTeleZoneInfo( bool bNew, TeleZone& tz, TIniFile *pMessageIniFile, TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDlgTeleZoneInfo *DlgTeleZoneInfo;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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