摘要:
日期时间格式化函数
语法:FormatDateTime (exp As DateTime [, namedformat As DateFormat ]) As String
说明:依照参数namedformat指定的格式将参数exp的日期格式化,选择性参数namedformat属于DateFormat枚举,成员如下:
(1)DateFormat.GeneralDate:显示日期和(或)时间。若有日期部分,则会显示为简短日期;若有时间部分,则会显示为完整时间;若两者皆有,则会全显示。
(2)DateFormat.LongDate:使用计算机的区域选项中所指定的完整日期格式显示日期。
(3)DateFormat.ShortDate:使用计算机的区域选项中所指定的简短日期格式显示日期。
(4)DateFormat.LongTime:使用计算机的区域选项中所指定的时间格式来显示日期。
(5)DateFormat.ShortTime:使用24小时制(hh : mm)来显示时间。
如:FormatDateTime (#2/14/20 阅读全文
posted @ 2011-08-14 22:23 聚拓互联 阅读(3568) 评论(1) 推荐(0) 编辑