在 Delphi 中设置 DBGrid 列格式

发布于 2024-07-07 05:13:38 字数 90 浏览 9 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谈场末日恋爱 2024-07-14 05:13:38
  1. 您可以设置FieldDisplayFormat
  2. 您可以处理OnGetText事件。 这种方法允许对值进行更复杂的操作。
  1. You can set the DisplayFormat of the Field
  2. You can handle OnGetText event. This approach allows to do more complex operations with the value.
谁人与我共长歌 2024-07-14 05:13:38

如果您不将字段添加到字段编辑器列表中,您可以通过代码获取格式:

TFloatField(MyQuery.fieldByName('MyField').DisplayFormat := '0.00';

如果您不想显示零,请将“0.00”替换为“#.##”;

If you don't add the fields to field Editor list you can get the formating by code as :

TFloatField(MyQuery.fieldByName('MyField').DisplayFormat := '0.00';

if you don't want to show the zeros replace '0.00' with '#.##';

江南月 2024-07-14 05:13:38

第一个调用端口是数据库本身数据字段的 DisplayFormat。

The first port of call is the DisplayFormat of the data field in the database itself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文