You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
733 B
38 lines
733 B
unit urelMulti;
|
|
|
|
interface
|
|
|
|
uses
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, RLReport, RLFilters, RLPDFFilter, Data.DB;
|
|
|
|
type
|
|
TrelMulti = class(TForm)
|
|
RLReport1: TRLReport;
|
|
dtsRel: TDataSource;
|
|
frbnd_header: TRLBand;
|
|
RLMemo1: TRLMemo;
|
|
RLBand1: TRLBand;
|
|
rldbtxt1: TRLDBText;
|
|
rldbtxt2: TRLDBText;
|
|
rldbtxt3: TRLDBText;
|
|
rldbtxt4: TRLDBText;
|
|
RLBand2: TRLBand;
|
|
RLLabel1: TRLLabel;
|
|
RLLabel2: TRLLabel;
|
|
RLLabel3: TRLLabel;
|
|
RLLabel4: TRLLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
relMulti: TrelMulti;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|