Well i've made a program that refreshes every 15 minutes. But because the site it refreshes has a script error I need to make it use
SendKeys.Send("ENTER")
On only that exact program. Is there anything that can do that? Because I need to use other programs while it does it, but if I use the code above it just presses enter for everything.
Code:
Public Class Form1
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
WebBrowser1.Navigate(ComboBox1.Text)
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate("Link")
Timer1.Enabled = True
End Sub
End Class