以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何将两个时间差计算为多少年多少天多少时多少分多少秒呢?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=163316)

--  作者:cnsjroom
--  发布时间:2021/4/23 10:13:00
--  如何将两个时间差计算为多少年多少天多少时多少分多少秒呢?
如何将两个时间差计算为多少年多少天多少时多少分多少秒呢?

output.Show(vars("kaishishijian"))
Dim Date1 As Date= format(Date.now, "G")
Dim Date2 As Date=vars("kaishishijian")
Dim tp As TimeSpan
tp =Date1 - Date2
output.show(tp.TotalSeconds()/60)

当前可以输出多少分钟
有没有办法将两个时间差计算为多少年多少天多少时多少分多少秒呢?

--  作者:有点蓝
--  发布时间:2021/4/23 10:44:00
--  
年月日使用这个计算:http://www.foxtable.com/webhelp/topics/2648.htm
时分秒使用这个计算:
Hours返回时段数据的小时数
Minutes返回时段数据的分钟数
Seconds返回时段数据的秒数