需要得到vb中的系统当前日期时间,与图中时间进行比较,请大家帮忙实现哈····
发布网友
发布时间:2022-04-25 15:17
我来回答
共2个回答
热心网友
时间:2023-10-11 23:35
思路:将时间都化成秒,有利于比较:
dim a,b,c,t
a=int(Hour(time))
b=int(Minute(time))
c=int(Second(time))
t=a*3600+b*60+c
然后图中的时间是什么控件 我不知道 但是化成秒就行了 一样的道理
热心网友
时间:2023-10-11 23:35
sub test ()
timenow=now() '获取系统当前时间
if timenow> cells(x,y) then 'cells(x,y)为需要比较的时间
elseif
endif
end sub