roomtype.~cpp

来自「全面剖析酒店管理的内容」· ~CPP 代码 · 共 23 行

~CPP
23
字号
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include "RoomType.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "Parent"
#pragma resource "*.dfm"
TfmRoomType *fmRoomType;
//---------------------------------------------------------------------------
__fastcall TfmRoomType::TfmRoomType(TComponent* Owner)
    : TfmParent(Owner)
{
    this->szCondition1 = "类型名称";
    this->szCondition2 = "类型编号";
    Table1->Active = true;
    this->SetSeekEditStatus();
    lblCount->Caption = "记录数: " + IntToStr(Table1->RecordCount) ;
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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