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 7:47PM
    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

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.