First commit 27/10/2000

This commit is contained in:
2021-09-12 21:55:41 +02:00
commit 7733370334
49 changed files with 3711 additions and 0 deletions

26
QR_FichaCompleta.cpp Normal file
View File

@ -0,0 +1,26 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "QR_FichaCompleta.h"
#include "Agenda.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm2 *Form2;
//---------------------------------------------------------------------------
__fastcall TForm2::TForm2(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm2::QRBand2BeforePrint(TQRCustomBand *Sender,
bool &PrintBand)
{
if ( FileExists( ListadoClientes->DB_Path + "pictures\\"+ ListadoClientes->TbListado->FieldByName( "Imagen" )->AsString ) )
QRImage1->Picture->LoadFromFile( ListadoClientes->DB_Path + "pictures\\" + ListadoClientes->TbListado->FieldByName( "Imagen" )->AsString );
}
//---------------------------------------------------------------------------