some record twice per page
Hello, can FR4 print the same record twice in the same page, maybe a way to go to the previous record? I'm stuck with this [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />
Thanks in advance[/img]
Comments
Don't connect the databand to a dataset.
set it's row count property instead and write code to control the movement of the dataset.
you may need to use a variable to track where you are.
write code in events to move the dataset and reset vars etc.
var
i, count: Integer;
ds: TfrxDataSet;
begin
ds := Report.GetDataset('frxDBDataSet1');// get at start
end.
Thanks again
Juan