ostum 2 miz yapabiliriz ul
ben sorunu hallettim kardeş teşekkürler
Aktif bir timer ve bir label oluşturup timere şu kodu yazdım :
Label6.Text = Date.Now.ToString("dd/MM/yyyy")
Ardından yeni bir aktif timer oluşturdum ve şu kodu yazdım (tam halini atiyorum)
Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
If DateTime.Now.ToString("HH:mm:ss") > "02:30:20" Then
If DateTime.Now.ToString("HH:mm:ss") < "13:00:00" Then
Timer7.Stop()
CheckBox2.Checked = False
CheckBox3.Checked = False
CheckBox4.Checked = False
End If
End If
End Sub