-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uRelatorio.pas
43 lines (36 loc) · 939 Bytes
/
uRelatorio.pas
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
unit uRelatorio;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Graphics,
Controls, Forms, Dialogs, RLReport, uPrincipal, System.UITypes;
type
TfrmRelatorio = class(TForm)
RLReport1: TRLReport;
RLBand1: TRLBand;
RLLabel1: TRLLabel;
RLBand2: TRLBand;
RLLabel_Recurso: TRLLabel;
RLLabel_Quantidade: TRLLabel;
RLLabel_Validade: TRLLabel;
RLBand3: TRLBand;
RLDBText1: TRLDBText;
RLDBText2: TRLDBText;
RLDBText3: TRLDBText;
RLBand4: TRLBand;
RLLabel2: TRLLabel;
RLSystemInfo1: TRLSystemInfo;
RLLabel3: TRLLabel;
RLSystemInfo2: TRLSystemInfo;
RLLabel4: TRLLabel;
RLSystemInfo3: TRLSystemInfo;
RLLabel5: TRLLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmRelatorio: TfrmRelatorio;
implementation
{$R *.dfm}
end.