How to prevent text being looped in a detail band

edited May 2019 in FastReport 4.0
Hi guys,

I wanted to print a detail-band with a few datasets. So far, it works. But I wanted the text which is just custom and not from the dataset to be invisible or to not being looped like the datasets.

To have an example I attached a screenshot.

So that bold Zertifikate should be printed just once and the datasets should be printed all.


Is there a possibility to count the datasets line for line? If so I could just write a condition or a custom counter and if the condition is true "Zertifikate" is set to invisible.

Comments

  • gpigpi
    edited 5:39AM
    Use something like
    ZertifikateMemo.Visible := <Line> = 1;
    
    in the band's OnBeforePrint event

Leave a Comment