-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit6.pas
More file actions
55 lines (44 loc) · 1.05 KB
/
Copy pathUnit6.pas
File metadata and controls
55 lines (44 loc) · 1.05 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
unit Unit6;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, QuickRpt, QRCtrls;
type
TFormRepMain = class(TForm)
QuickRep1: TQuickRep;
TitleBand1: TQRBand;
DetailBand1: TQRBand;
QRShape1: TQRShape;
QRLabel1: TQRLabel;
QRLabel2: TQRLabel;
QRLabel3: TQRLabel;
QRDBText1: TQRDBText;
QRDBText2: TQRDBText;
QRDBText3: TQRDBText;
QRDBText4: TQRDBText;
QRDBText5: TQRDBText;
QRDBText6: TQRDBText;
SummaryBand1: TQRBand;
QRLabel5: TQRLabel;
ColumnHeaderBand1: TQRBand;
QRLabel6: TQRLabel;
QRLabel7: TQRLabel;
QRLabel8: TQRLabel;
QRLabel9: TQRLabel;
QRShape2: TQRShape;
QRLabel10: TQRLabel;
QRLabel11: TQRLabel;
QRLabel4: TQRLabel;
QRDBText7: TQRDBText;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FormRepMain: TFormRepMain;
implementation
uses
DB_U1, DB_U2, DB_U3, Unit3, Unit4, Unit5;
{$R *.dfm}
end.