日と月を確認する必要があります。私はを使用してDate.Now
います。
例えば:
日=9および月=10の場合、アクションを実行します
どうやってやるの?
DateTime変数のDay
およびプロパティを使用します。Month
Dim currentDate As DateTime = DateTime.Now
If currentDate.Month = 10 AndAlso currentDate.Day = 9 Then
'Do something
End If
Date.Now.MonthおよびDate.Now.Day。これらは、Date型のプロパティです。
Dim today = Date.Now.Date
If today.Day = 9 AndAlso today.Month = 10 Then ...
Date.today.day
Date.today.month
Dim today = Date.Today
Dim day = today.day
Dim month = today.Month
Dim year = today.Year
If day = 10 And Also month = 10 Then
Label1.Text = today . Day
Label2.Text = today . Month
Label3.Text = Date . Today
Label4.Text = Time Of Day
Label5.Text = year