Duplex FR3
I want print duplex report like this:
In front a fill columns of record one
In back other columns of recod one too
and
In front columns of the record two
In back columns of the record two
and ...
In front a fill columns of record one
In back other columns of recod one too
and
In front columns of the record two
In back columns of the record two
and ...
Comments
while not dstRegistros.eof do
begin
Filtro := 'REGISTRO = '''+dstRegistrosREGISTRO.Value+'''';
dstRegistros.next;
Filtro := Filtro + ' OR REGISTRO = '''+dstRegistrosREGISTRO.Value+'''';
cdsTrabalhadores.Filter := filtro;
frxReport1.LoadFromFile('c:\Front.fr3');
frxReport1.PrepareReport(false);
frxReport1.LoadFromFile('Inside.fr3');
frxReport1.PrepareReport(false);
dstRegistros.Next;
end;
frxReport1.ShowPreparedReport;