Crystal Report 处理当前系统时间

原文: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")
时间: 2024-10-20 07:01:00

Crystal Report 处理当前系统时间的相关文章

水晶报表 Crystal Report 调用存储过程时出错 找不到表 ,解决方法。

用 CrystalReportViewer1 控件在asp.net的网页上显示报表,如果做报表时调用数据表数据的方式调用是可以成功的,但报表是用存储过程获取数据方式会出现以下错误: 找不到表'RptOpenCheck;1' . 文件 G:\TEMP\FO-OpenCheck {6D191F06-DECF-4A25-88FC-8553E3D435AA}.rpt 内出错: 找不到表. Error: 未将对象引用设置到对象的实例. The table 'RptOpenCheck;1' could no

解决Crystal Report XI R2不能在64操作系统正常工作的问题-web程序

原文:[原创]解决Crystal Report XI R2不能在64操作系统正常工作的问题-web程序 我更换了新的电脑,操作系统也从原来32位的windows 2003 R2升级到windows 2008 R2 x64, 由于客户的原因我们的报表部分必须用Crystal Report XI R2来完成,报表在原来的计算机上运行一直没有问题,但是在新的计算机上一直不能正工作,错误如下: The type initializer for 'CrystalDecisions.CrystalRepor

linux 修改服务器系统时间

前言 因项目需求需要修改统一系统时间 详情配置如下: 在CentOS 7里面有一个命令timedatectl可以帮助我们修改服务器的时区. 1. 查看服务器里的时间设置 timedatectl ,它等同于 timedatectl status : 2. 了解 timedatectl 命令的各个参数: 3. 设置时间 下面看下CentOS修改服务器系统时间 linux安装完毕后,一般都是国外的世界,一点都不方便设置任务,或者导致网站获取本地的时间错乱,所以就需要把服务器的时间改为和本地时间一致,也

自动调整linux系统时间和时区与Internet时间同步

调整linux系统时间和时区与Internet时间同步 一.修改时区:# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime修改为中国的东八区# vi /etc/sysconfig/clockZONE="Asia/Shanghai"UTC=falseARC=false 二.配置新的时间日期设定:# date -s 2008/05/06 时间设定:# date -s 18:40:00 查看硬件时间(BIOS的):    hwclock

Linux系统时间管理

一.时区配置 显示时区 [[email protected] ~]# date -R Mon, 19 Dec 2016 14:02:47 +0800 [[email protected] ~]# [[email protected] ~]# date +%z +0800 [[email protected] ~]# 主要就是后面的+0800,东八区 修改时区 [[email protected] ~]# vim /etc/sysconfig/clock [[email protected] ~]

linux小知识之查看系统时间

有个朋友想查看服务器一天的网卡流量,但是没有安装cacti.所以我推荐他使用ifconfig查看下网卡流量,然后看下系统运行时间,除出来参考一下.他居然问我系统时间怎么查看.好吧,那我就写篇文章记录下怎么查看系统时间 方法一: who命令, -r runlevel     -b boot [[email protected] ~]# who -r 运行级别 3 2016-11-03 10:32 [[email protected] ~]# who -b 系统引导 2016-11-03 10:32

java中获取当前系统时间,并与字符串相互转换格式,或者转化成秒数,天数等整数

转换成秒数 Date类有一个getTime()可以换回秒数,例如: public class DateToSecond { public static void main(String[] args) { Date date = new Date(System.currentTimeMillis()); System.out.println(date.getTime()); } } 与字符串格式相互转换 一. 获取当前系统时间和日期并格式化输出: import java.util.Date; i

查看和修改系统时间

Echo -n 不换行显示 echo -e不转义 Date '+%Y-%m-%d 查看当前时间   date-s '2017/09/04'表示修改时间 %w表示周   %H:%M:%S时分秒 +%F=+%Y-%m-%d  %T=%H:%M:%S $()=反引号 hwclock将修改后的系统时间写到bios里 Date +%F -d '-3 day'三天前 -一定要 Date +%F -d '+3 day'三天以后 +可以不要 Date +%H -d '-3 hour'3小时以前 Sed '/^$

linux中显示/设置系统时间

date   显示/设置 系统时间 +某个格式 以某种格式显示日期 格式: +%F  2017-08-20  ====== +%Y-%m-%d +%w 显示周几  0 周日  1-6 周一到周六 +%T  时:分:秒     ====== +%H:%M:%S -d  按照你的描述显示日期 -d "1day"    1天之后  ==== +1day -d "-1day"   1天之前 -s修改系统的时间 1.1 修改系统时间的命令 ntpdatepool.ntp.or