Topic: Report Problem

Hello to all.


Is it possible to access the report data in the report script ('fast report') and iterate records from it....
Big big thanks in advance!

Re: Report Problem

Hello.


Check it out

var
       ds: TfrxDataSet;  
       sValue: string;
begin
       ds := Report.GetDataset('report');
       while not ds.eof do
       begin
           sValue := ds.Value('fieldname');
           ds.Next;
       end; 
Dmitry.