16,721
社区成员




Dim dMyDate As DateTime = DateTime.Now
Dim PastDays
Dim Weeks
PastDays = dMyDate.DayOfYear
Weeks = Val(PastDays) / 7
Weeks = Int(Weeks)+1
Dim Mth
Dim Quarter
Mth = Month(Now)
If Mth = 1 Or Mth = 2 Or Mth = 3 Then
Quarter = "1季度"
End If
If Mth = 4 Or Mth = 5 Or Mth = 6 Then
Quarter = "2季度"
End If
If Mth = 7 Or Mth = 8 Or Mth = 9 Then
Quarter = "3季度"
End If
If Mth = 10 Or Mth = 11 Or Mth = 12 Then
Quarter = "4季度"
End If