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 ...

Comments

  • edited 4:06PM
    frxReport1.Clear;
    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;

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.