home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
TEXTLIST.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
2KB
|
45 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef TextListH
#define TextListH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\QuickRep.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\System.hpp>
#include <iostream.h>
#include <fstream.h>
#include <stdlib.h>
#include <stdio.h>
//---------------------------------------------------------------------------
class TTextRep : public TForm
{
__published: // IDE-managed Components
TQRBand *QRBand1;
TQRLabel *QRLabel1;
TQRBand *QRBand2;
TQRSysData *QRSysData3;
TQRSysData *QRSysData1;
TQRSysData *QRSysData2;
TQRBand *QRBand3;
TQRLabel *QRLabel2;
TQuickReport *Rep;
void __fastcall RepAfterPrint(TObject *Sender);
void __fastcall RepBeforePrint(bool &PrintReport);
void __fastcall RepNeedData(bool &MoreData);
private: // User declarations
FILE *aFile;
public: // User declarations
virtual __fastcall TTextRep(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TTextRep *TextRep;
//---------------------------------------------------------------------------
#endif