⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inherit.cpp

📁 suite component ace report
💻 CPP
字号:
//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop

#include "inherit.h"
#include "custlist.h"
#include "custord.h"
#include "client.h"
#include "custitem.h"
//---------------------------------------------------------------------------
#pragma resource "*.dfm"
TFormInheritance *FormInheritance;
//---------------------------------------------------------------------------
__fastcall TFormInheritance::TFormInheritance(TComponent* Owner)
	: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TFormInheritance::Button1Click(TObject *Sender)
{
  TFormCustomerListing *custlist = new TFormCustomerListing(Application);
  custlist->SctReport1->Run();
}
//---------------------------------------------------------------------------
void __fastcall TFormInheritance::Button2Click(TObject *Sender)
{
  TFormCustomerOrders *custorders = new TFormCustomerOrders(Application);
  custorders->SctReport1->Run();
}
//---------------------------------------------------------------------------
void __fastcall TFormInheritance::Button3Click(TObject *Sender)
{
  TFormClientListing *clientlist = new TFormClientListing(Application);
  clientlist->SctReport1->Run();
}
//---------------------------------------------------------------------------
void __fastcall TFormInheritance::Button4Click(TObject *Sender)
{
  TFormCustomerOrdersItems *custitems = new TFormCustomerOrdersItems(Application);
  custitems->SctReport1->Run();
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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