Attivare un evento in certo orario

di il
1 risposte

Attivare un evento in certo orario

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

1 Risposte

  • Re: Attivare un evento in certo orario

    Ciao,
    nell'evento ticket del timer, devi fare una verifica ossia
    if TextBox5.Text = "11:30:00" then
    EseguiFunzione
    end IF

    Dove EseguiFunzione è una tua funzione che esegue il codice che tu hai riportato.
    Ciao Lele
Devi accedere o registrarti per scrivere nel forum
1 risposte