码迷,mamicode.com
首页 > 其他好文 > 详细

Crystal Report 处理当前系统时间

时间:2014-11-04 19:12:52      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   os   for   sp   div   

原文:Crystal Report 处理当前系统时间

Changed the print date format to HH/yy/MM/mm/SS/dd  (For Example:2014/01/23 16:30:45= 161430014523) :

iif(Hour(CurrentTime)<10,left(0+totext(Hour(CurrentTime)),2),left(totext(Hour(CurrentTime)),2))+
right(left(totext((Year(CurrentDate))),5),2)+

iif(Minute(CurrentTime)<10,left(0+totext(Minute(CurrentTime)),2),left(totext(Minute(CurrentTime)),2))+
iif(Month(CurrentDate)<10,left(0+totext(Month(CurrentDate)),2),left(totext(Month(CurrentDate)),2))+

iif(Second(CurrentTime)<10,left(0+totext(Second(CurrentTime)),2),left(totext(Second(CurrentTime)),2))+
iif(Day(CurrentDate)<10,left(0+totext(Day(CurrentDate)),2),left(totext(Day(CurrentDate)),2))

或者:

totext(Hour (PrintTime),"00") + mid(totext(Year (PrintDate),"0000"),3,2)+ totext(Minute (PrintTime),"00") + totext(Month (PrintDate),"00") + totext(Second (PrintTime),"00") + totext(Day (PrintDate),"00")

 

Crystal Report 处理当前系统时间

标签:style   blog   http   color   ar   os   for   sp   div   

原文地址:http://www.cnblogs.com/lonelyxmas/p/4074089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!