Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
Dim temp As Process()
temp = Process.GetProcesses()
Dim x As Integer
For x = 0 To temp.Length - 1
ListBox1.Items.Add(temp(x).ProcessName & ".exe")
Next x
If ListBox1.Items.Contains("firefox.exe") = True Then
testo.Text = "<Viene aperto Mozilla Firefox>"
ElseIf ListBox1.Items.Count = 0 Then
MsgBox("Non c'è nessun processo elencato!")
End If
End Sub
però in questo modo ad ogni intervallo del timer mi inserisce mozilla è stato avviato" e invece deve comparire una sola volta...come si può fare
??????????????