如何更改数据库感知组合框中的日期格式?

发布于 2024-09-26 11:01:46 字数 187 浏览 4 评论 0原文

我正在使用 TwwDbLookupComboDlg 组件。我想将组合框中的日期格式(如下所示)从 1/1/2009 更改为 Jan 2009,知道吗?

TwwDbLookupComboDlg

I'm using TwwDbLookupComboDlg component. I want to change the date format in the combobox (as shown below) from 1/1/2009 to Jan 2009, any idea?

TwwDbLookupComboDlg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

长安忆 2024-10-03 11:01:46

更改 TDateField 的 DisplayFormat :

with Table1 do
    TDateField(FieldByName('Date1')).DisplayFormat:='mmm yyyy';

Change the TDateField's DisplayFormat :

with Table1 do
    TDateField(FieldByName('Date1')).DisplayFormat:='mmm yyyy';
夜空下最亮的亮点 2024-10-03 11:01:46

如果您使用数据软件控件,则可以使用 格式化字段数据DisplayFormat 属性。

TDateTimeField(ADODataSet1.FieldByName('START_DATE')).DisplayFormat:='mmm-yyyy';

If you are using a dataware control, you can format the field data using the DisplayFormat property.

TDateTimeField(ADODataSet1.FieldByName('START_DATE')).DisplayFormat:='mmm-yyyy';
芯好空 2024-10-03 11:01:46

我还没有使用过这个组件,但我认为当您填写组合时,对于列表中的每个字段,您可以使用短月份名称

http://www.delphibasics.co.uk/RTL.asp?Name=ShortMonthNames

I haven't worked with this component but I think when you're filling up the combo, for each field in the list you can use shortmonthnames

http://www.delphibasics.co.uk/RTL.asp?Name=ShortMonthNames

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