home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1996 August
/
VPR9608A.BIN
/
del20try
/
install
/
data.z
/
QRLIST.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-05-08
|
771b
|
40 lines
unit QRLIST;
// QuickReport simple list
// - Connect a datasource to the QuickReport component
// - Put QRDBText components on the Detail band
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Quickrep, StdCtrls, ExtCtrls;
type
TQRListForm = class(TForm)
QuickReport: TQuickReport;
Title: TQRBand;
PageHeader: TQRBand;
Detail: TQRBand;
PageNumber: TQRSysData;
PageFooter: TQRBand;
QRDateTime: TQRSysData;
QRSysData1: TQRSysData;
QRLabel1: TQRLabel;
QRLabel2: TQRLabel;
QRLabel3: TQRLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
QRListForm: TQRListForm;
implementation
{$R *.DFM}
end.