在 Delphi 中设置 DBGrid 列格式
我正在 Delphi 中使用 DBGrid 组件。 我想知道如何设置列的格式。 我有真实的值,我想在网格中显示为货币。
有人知道怎么办吗?
I am using a DBGrid component in Delphi. I wonder how I can set the format of a column. I have real values that I want to be displayed as currency in the grid.
Someone knows how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Field
的DisplayFormat
OnGetText
事件。 这种方法允许对值进行更复杂的操作。DisplayFormat
of theField
OnGetText
event. This approach allows to do more complex operations with the value.如果您不将字段添加到字段编辑器列表中,您可以通过代码获取格式:
如果您不想显示零,请将“0.00”替换为“#.##”;
If you don't add the fields to field Editor list you can get the formating by code as :
if you don't want to show the zeros replace '0.00' with '#.##';
第一个调用端口是数据库本身数据字段的 DisplayFormat。
The first port of call is the DisplayFormat of the data field in the database itself.