Foxtable(狐表)用户栏目专家坐堂 → [求助]时间计算(已解决)


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

主题:[求助]时间计算(已解决)

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


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/10/28 9:09:00 [显示全部帖子]

For Each dr As DataRow In DataTables("表C").DataRows
    If dr.IsNull("第四列") Then
        dr("第六列") = Nothing
    Else If dr.IsNull("第五列") Then
        Dim tp As TimeSpan
        tp = Date.now - cdate(dr("第四列"))
        dr("第六列") = tp.TotalSeconds()
       
    Else
        Dim tp As TimeSpan
        tp = dr("第五列") - dr("第四列")
        dr("第六列") = tp.TotalSeconds()
    End If
Next

 回到顶部
帅哥哟,离线,有人找我吗?
大红袍
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/10/28 9:19:00 [显示全部帖子]

For Each dr As DataRow In DataTables("表C").DataRows
    If dr.IsNull("第四列") Then
        dr("第六列") = Nothing
    Else If dr.IsNull("第五列") Then
        Dim tp As TimeSpan
        tp = cdate(format(Date.now,"yyyy-MM-dd HH:mm:ss")) - cdate(dr("第四列"))
        dr("第六列") = tp.TotalSeconds()
       
    Else
        Dim tp As TimeSpan
        tp = dr("第五列") - dr("第四列")
        dr("第六列") = tp.TotalSeconds()
    End If
Next

 回到顶部