Loop inside masterdata column?(delphi 2007)

edited January 2012 in FastReport 4.0
Is it possible to loop inside a master data column? Let say I asign my memo a datafield dynamicly and then beforePrint loop inside my masterdata column(memo datas) and check it's text? I've been trying so many things but nothing is working so far. Any hints?

Edit:

What I want to do exactly is to loop into each cells of a "columns", check the text, if it's true, then I would add a checkbox into this cell.



(sorry for my poor grammar o.O)

Comments

  • gpigpi
    edited 2:26PM
    Try
    var DS: TfrxDataSet;
    begin
        DS:=Report.GetDataset('Items');
        DS.First;
        while not DS.Eof do      
          begin          
            ShowMessage(DS.Value('Part Name'));
            DS.NEXT;
          end;        
    end.
    

Leave a Comment