几天前我刚刚开始如何在 vb.Net 中开始编程我想知道使按钮代码仅在选定日期的选定时间工作的最佳代码是什么?
我会尝试用一个例子来说明:
我单击了一个按钮,但我使用该按钮发送的命令直到例如 2015 年 10 月 30 日下午 16:30 才起作用。
可能吗?
我试着做点什么,但我不是那么好。
使用您提供的极其有限的信息...尝试以下操作:
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Dim dt As New DateTime(2015, 10, 30, 16, 30, 0)
If DateTime.Now >= dt Then
' ... do something in here ...
Else
MessageBox.Show("Function not available until: " & dt, "Time Not Reached Yet")
End If
End Sub