home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
QRLABELS.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-05-02
|
475b
|
30 lines
{ QuickReport master detail template }
unit qrlabels;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Qrctrls, quickrpt, DB, DBTables, ExtCtrls;
type
TQRLabelsForm = class(TQuickRep)
MasterTable: TTable;
DetailBand1: TQRBand;
QRLabel2: TQRLabel;
private
{ Private 宣言 }
public
{ Public 宣言 }
end;
var
QRLabelsForm: TQRLabelsForm;
implementation
{$R *.DFM}
end.