FastReport 数据过滤

FastReport 数据过滤  

在DataBind 的 OnBeforePrint 设置条件
 
例:显示 大于0 的数据
procedure MasterData1OnBeforePrint(Sender: TfrxComponent);
begin
   MasterData1.Visible :=  (<FxDB."Counts">) > 0;
end;
原文地址:https://www.cnblogs.com/Xuhaiyang/p/3755072.html