git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.FastReport@13 475b051d-3a53-6940-addd-820bf0cfe0d7
58 lines
1.1 KiB
ObjectPascal
58 lines
1.1 KiB
ObjectPascal
unit Unit1;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
frxClass, StdCtrls, frxCross, Db, DBTables;
|
|
|
|
type
|
|
TForm1 = class(TForm)
|
|
Button1: TButton;
|
|
frxCrossObject1: TfrxCrossObject;
|
|
Table1: TTable;
|
|
frxReport1: TfrxReport;
|
|
procedure Button1Click(Sender: TObject);
|
|
procedure frxReport1BeforePrint(c: TfrxReportComponent);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
Form1: TForm1;
|
|
|
|
implementation
|
|
|
|
{$R *.DFM}
|
|
|
|
procedure TForm1.Button1Click(Sender: TObject);
|
|
begin
|
|
frxReport1.ShowReport;
|
|
end;
|
|
|
|
procedure TForm1.frxReport1BeforePrint(c: TfrxReportComponent);
|
|
var
|
|
Cross: TfrxCrossView;
|
|
i, j: Integer;
|
|
begin
|
|
if c is TfrxCrossView then
|
|
begin
|
|
Cross := TfrxCrossView(c);
|
|
|
|
Table1.First;
|
|
i := 0;
|
|
while not Table1.Eof do
|
|
begin
|
|
for j := 0 to Table1.Fields.Count - 1 do
|
|
Cross.AddValue([i], [Table1.Fields[j].DisplayLabel], [Table1.Fields[j].AsString]);
|
|
|
|
Table1.Next;
|
|
Inc(i);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
end.
|