vb 对比当前时间,要转成整型或字符型吗?
发布网友
发布时间:2022-04-25 15:17
我来回答
共2个回答
热心网友
时间:2023-10-11 23:35
直接用日期格式判断,自定义时间常量可以用字符串并用cdate转换后判断。
我没装VB,所以用EXCEL内的VBA演示
热心网友
时间:2023-10-11 23:35
下面这三种都是可以的。
If Format(Time, "hhmm") > "1200" Then ‘12:00:59不会被判断为“大于”
text1="现在时间是" & Time & "缩写" & Format(Time, "hhmm")
end if
If Time > "12:00" Then ‘但12:00:00也会被判断为“大于”
text1="现在时间是" & Time & "过了12点"
end if
If Val(Format(Time, "hhmm") ))>1200 Then ‘12:00:59不会被判断为“大于”
text1="现在时间是" & Time & "过了12点"
end if
也是可以的。