home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
delphi
/
INSTALL
/
DATA1.CAB
/
Program_Built_Files
/
Objrepos
/
qrlabels.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1999-08-11
|
469b
|
29 lines
unit qrlabels;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Db, DBTables, QuickRpt, Qrctrls, ExtCtrls;
type
TQRLabelForm = class(TForm)
QuickRep1: TQuickRep;
DetailBand1: TQRBand;
QRLabel2: TQRLabel;
MasterTable: TTable;
private
{ Private declarations }
public
{ Public declarations }
end;
var
QRLabelForm: TQRLabelForm;
implementation
{$R *.DFM}
end.