检查新月并在VB.NET中执行sub

时间:2011-08-24 12:46:22

标签: vb.net date

我的程序流程如下。

在表单加载时,程序将检查当前日期。如果它在新的月份,则会调用某个函数。

任何想法怎么做?

1 个答案:

答案 0 :(得分:2)

假设您保存了上一次运行软件的日期,您可以使用以下代码:

'Get the date of the previous run, that you could have saved in the database    
Dim previousDate = GetDateOfPreviousRun()

Dim currentDate = DateTime.Today()

If currentDate.Month > previousDate.Month OrElse currentDate.Year > previousDate.Year Then
    SomeFunctionIsCalled()
End If