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

发布于 2024-12-01 04:47:07 字数 79 浏览 0 评论 0原文

我的程序流程如下。

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

有什么想法如何去做吗?

The flow of my program is the following.

On form load, the program will check current date. If it is in a new month, some function is called.

Any ideas how to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居者 2024-12-08 04:47:07

假设您保存了上次运行软件的日期,您可能会得到类似于以下的代码:

'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

Assuming you save the date of the previous run of your software, you could have code smilar to this:

'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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文