companyinfo.h

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

H
37
字号
//---------------------------------------------------------------------------

#ifndef CompanyInfoH
#define CompanyInfoH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <IniFiles.hpp>
//---------------------------------------------------------------------------
class TDlgCompanyInfo : public TForm
{
__published:	// IDE-managed Components
        TEdit *EtName;
        TLabel *Label3;
        TEdit *EtCode;
        TLabel *Label5;
        TBitBtn *CancelBtn;
        TBitBtn *OKBtn;
        void __fastcall OKBtnClick(TObject *Sender);
        void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private:	// User declarations
        bool bNew;
        String& Code;
        String& Name;
        TIniFile *pMsgIniFile;
public:		// User declarations
        __fastcall TDlgCompanyInfo( bool bNew, String& Code, String& Name,
                         TIniFile *pMessageIniFile, TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDlgCompanyInfo *DlgCompanyInfo;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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