Foxtable(狐表)用户栏目专家坐堂 → [求助]在Word文档报表中如何设置时间格式


  共有3795人关注过本帖树形打印复制链接

主题:[求助]在Word文档报表中如何设置时间格式

帅哥哟,离线,有人找我吗?
有点酸
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:五尾狐 帖子:1093 积分:6682 威望:0 精华:0 注册:2013/7/1 9:05:00
  发帖心情 Post By:2015/4/20 20:24:00 [显示全部帖子]

你看一下date的说明:

http://www.foxtable.com/help/topics/1424.htm

看一下timespan的说明:

http://www.foxtable.com/help/topics/0287.htm

再看时段列的说明:

http://www.foxtable.com/help/topics/2505.htm

http://www.foxtable.com/help/topics/2506.htm

时段列并非TimeSpan,就是一个数字列而已。

 

如果两列是日期时间列:

 

Select Case e.DataCol.name
    Case "通知代维单位时间"
        Dim dr As DataRow = e.DataRow
        If dr.IsNull("通知代维单位时间")  Then
           dr("通知提醒时间") = Nothing
        Else
            Dim tp As Date = dr("通知代维单位时间") 
            dr("通知提醒时间") = tp.AddMinutes(35)

        End If
End Select

 

如果两列是时段列:

 

Select Case e.DataCol.name
    Case "通知代维单位时间"
        Dim dr As DataRow = e.DataRow
        If dr.IsNull("通知代维单位时间")  Then
           dr("通知提醒时间") = Nothing
        Else
            dr("通知提醒时间") = dr("通知代维单位时间") + 2100

        End If
End Select


 回到顶部