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

📄 frmprintform.cpp

📁 大学田径运动会管理系统
💻 CPP
字号:
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include "frmprintform.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
Tprint_form *print_form;
//---------------------------------------------------------------------------
__fastcall Tprint_form::Tprint_form(TComponent* Owner)
        : TForm(Owner)
{
}
//---------------------------------------------------------------------------


void __fastcall Tprint_form::open(AnsiString sql)
{
m_print_con->Connected=false;
m_print_query->Active=false;
m_print_query->SQL->Clear();
m_print_query->SQL->Add(sql);
m_print_con->Connected=true;
m_print_query->Active=true;
        //TODO: Add your source code here
}
void __fastcall Tprint_form::QRDBText9Print(TObject *sender,
      AnsiString &Value)
{
Value=Value.Trim();        
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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