我的程序流程如下。
在表单加载时,程序将检查当前日期。如果它在新的月份,则会调用某个函数。
任何想法怎么做?
答案 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