在fastreport中如何对数据库中特定的数值特殊显示?(20分)

  • 主题发起人 主题发起人 liuyang
  • 开始时间 开始时间
L

liuyang

Unregistered / Unconfirmed
GUEST, unregistred user!
在数据库中数据有很多数值,要把数值是1的字段值在报表中特殊表示(比如是粗体红色,或者)用的是memoview控件,是不是要写脚本语言?这么写呢?
 
在fastreport中使用脚本,选择你需要的memo,使用一下事件,
procedure Memo18OnBeforePrint(Sender:TfrxComponent);
begin
if memo18.text ='1' then
memo18.font.color:=clred;
end;
 
我试了,好像不行.不知道怎么回事
 
接受答案了.
 
后退
顶部