I'm creating a program that is meant to run in the background, but with the opportunity to select a time where the program is supposed to appear on the screen again. I'm not sure how to do this, but i assume it's possible with a simple 'if' within my timer?
This is the code from the top of my head (wich obviously isn't working)
Dim time As DateTime = DateTime.Now
Dim format As String = "HH:mm"
Label10.Text = (time.ToString(format))
If DateAndTime.Now() = Textbox1.Text Then
Me.Show()
End If
Thanks :)