lookup.cpp

来自「《C Builder 5程序设计——数据库应用实务篇》程序源代码」· C++ 代码 · 共 29 行

CPP
29
字号
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop

#include "lookup.h"
#include "About.h"
#include "maindata.h"
//---------------------------------------------------------------------------
#pragma resource "*.dfm"
TfmLookup *fmLookup;
//---------------------------------------------------------------------------
__fastcall TfmLookup::TfmLookup(TComponent* Owner)
  : TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TfmLookup::About1Click(TObject *Sender)
{
  TfmAbout *fmAbout;

  fmAbout = new TfmAbout(NULL);
  fmAbout->ShowModal();
  delete fmAbout;
}
//---------------------------------------------------------------------

⌨️ 快捷键说明

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