Buongiorno a tutti
E' da poco che sto cercando di fare un programma tutto mio e attualmente sto utilizzando Visual basic express 2010, ma voglio arrivare subito al punto, avrei bisogno di attivare un comando solo quando l'ora attuale è uguale ad un ora di una textbox che ho inserito nel form.
Per ora ho fatto questo ma non funziona,
Private Sub TextBox6_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox6.TextChanged
Dim orap As String
orap = TextBox6.Text
If orap = TextBox5.Text Then
Dim wb As New System.Windows.Forms.WebBrowser
wb.Navigate("http://" & Indirizzo & "/forms.htm?led0=0")
Sleep(200)
End If
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
TextBox5.Text = TimeOfDay
Qualcuno può darmi un aiutino........Grazie