我想在PowerBuilder中格式化日期时间

发布于 2025-01-07 08:39:29 字数 651 浏览 0 评论 0原文

我想以特定格式显示日期和时间,如下所示:

“yyyy/mm/dd hh:mm”

但是,我得到的输出为“mm/dd/yyyy hh:mm:ss”

我尝试使用 < code>edit.mask 属性如下:

column(band=detail id=9alignment="0" tabsequence=32766 border="0" color="0" x="300" y =“450”高度=“100”宽度=“1449”格式=“[短日期] [时间]”html.valueishtml=“0”名称= record_create_tms可见=“1〜tif(isnull(record_create_tms),0,1 )" edit.limit=0 edit.case=any edit.autoselect=yes *edit.mask="YYYY/MM/DD HH:MM"* edit.imemode=0 font.face=“Arial” font.height=“-12” font.weight=“400” font.family=“2” font.pitch=“2” font.charset=“0”background.mode=“2” background.color="12632256" )

但当我尝试保存它时,它显示语法错误。请告知如何实现我的输出?

I want to display the date and time in a particular format as below :

"yyyy/mm/dd hh:mm"

But, I am getting the output as "mm/dd/yyyy hh:mm:ss"

I tried using the edit.mask property as follows :

column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="0" x="300" y="450" height="100" width="1449" format="[shortdate] [time]" html.valueishtml="0" name=record_create_tms visible="1~tif(isnull(record_create_tms),0,1)" edit.limit=0 edit.case=any edit.autoselect=yes *edit.mask="YYYY/MM/DD HH:MM"* edit.imemode=0 font.face="Arial" font.height="-12" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="12632256" )

But it is showing me syntax error when I try to save it. Please advise how to achieve my output?

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

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

发布评论

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

评论(1

濫情▎り 2025-01-14 08:39:29

您对用于显示数据的数据格式输入数据时使用的编辑掩码感到困惑> 版本中。

我可以在您粘贴的代码中看到您更改了 edit.maskformat 仍然是 [shortdate] [time]

将控件属性的Format 选项卡页中的Format属性更改为yyyy/mm/dd hh:mm,它应该可以工作。

You are confused between the data format that is used to display data and the edit mask that is used when entering data in edition.

I can see in the code you pasted that you changed the edit.mask but the format is still [shortdate] [time].

Change the Formatproperty from the Format tab page of the control properties to yyyy/mm/dd hh:mmand it should work.

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