自動化されたプログラムを作成していますが、タイマーに行き詰まっています。プログラムを開始したとき、間隔が0であるとだけ表示されます
ここに私が得たものがあります:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim TextBox1 As String
Dim URL As String
Dim Textbox3 As Integer
Dim i As Integer
Dim Times As Integer
Dim Time As Integer
Dim Textbox2 As Integer
Dim rampTimer As New Timer
Dim Tyme As Integer
Restart:
TextBox1 = URL
UseProxy(ListBox1.Items.Item(i))
WebBrowser1.Navigate(URL)
Tyme = Textbox3 * 1000 * 6
rampTimer.Interval = Tyme
rampTimer.Enabled = True
Time = Times + 1
If Time = Textbox2 Then
MsgBox("Done! Made by Laboboy31", "Done")
GoTo Last
End If
Times = Time
GoTo Restart
Last:
End Sub