如何在QUICKREP组件中显示格式化数值(50分)

  • 主题发起人 主题发起人 随风飘零叶
  • 开始时间 开始时间

随风飘零叶

Unregistered / Unconfirmed
GUEST, unregistred user!
比如在报表中显示123456789为123,456,789.00
怎么做到的
 
在onbeforeprint事件中自己处理一下。
 
query 字段的属性里就可以解决了 editmask
 
用FORMAT函数或是用floattostr,floattostrf函数,你查一下DELPHI的帮助文件就行了
 
在aaa字段的ongettext事件中处理
if displaytext then
text := FormatFloat(#,##0,00',fieldbyname('aaa').asfloat);
 
多人接受答案了。
 
后退
顶部