-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit3.pas
More file actions
42 lines (34 loc) · 788 Bytes
/
Copy pathUnit3.pas
File metadata and controls
42 lines (34 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
unit Unit3;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, QuickRpt, QRCtrls;
type
TFormRepTvar = class(TForm)
QuickRep2: TQuickRep;
TitleBand1: TQRBand;
ColumnHeaderBand1: TQRBand;
DetailBand1: TQRBand;
SummaryBand1: TQRBand;
QRLabel1: TQRLabel;
QRLabel2: TQRLabel;
QRLabel3: TQRLabel;
QRDBText1: TQRDBText;
QRDBText2: TQRDBText;
QRLabel4: TQRLabel;
QRDBText3: TQRDBText;
QRLabel5: TQRLabel;
QRDBText4: TQRDBText;
QRShape1: TQRShape;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FormRepTvar: TFormRepTvar;
implementation
uses
DB_U1, DB_U2, DB_U3;
{$R *.dfm}
end.