Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If (Process.GetProcessesByName("AcroRd32").Length > 0) Then
End If
Process.Start("C:\Windows\Notepad.exe")
End SubWhen the timer runs, it opens the notepad after every 100ms or after a set interval. I want it to open only at once. How can i do that ?