以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 如何将两个时间差计算为多少年多少天多少时多少分多少秒呢? (http://foxtable.net/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 时分秒使用这个计算:
|