如何检查日期是否在vb中的两个给定日期之间,如:
If ( BirthDate Between T1 and T2) Then
Label5.Caption = " Your Horoscope Sign is LIBRA"
End If
答案 0 :(得分:1)
您需要在T1和T2之间进行比较。这样的事情应该有效。请记住,年份必须相同或比较不起作用,如果您不希望删除等号,此比较包括端点,这也假设您正在使用日期对象
If (BirthDate >= T1 And BirthDate <= T2) Then
Label5.Caption = "You're In"
Else
Label5.Caption = "You're Out"
End If