booktype.cpp
来自「全面剖析图书馆管理的内容」· C++ 代码 · 共 22 行
CPP
22 行
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "BookType.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "Parent"
#pragma resource "*.dfm"
TfmBookType *fmBookType;
//---------------------------------------------------------------------------
__fastcall TfmBookType::TfmBookType(TComponent* Owner)
: TfmParent(Owner)
{
this->szCondition1 = "类型编号";
this->szCondition2 = "类型名称";
// 设置查询条件
this->SetSeekEditStatus();
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?