これはばかげているかもしれませんが、なぜこれを行うのか真剣にわかりません:
gif でわかるように、最初のプロキシは通常配置されますが、他のすべてのプロキシは新しい行に配置されます。
次のようなプロキシをインポートしています。
Dim ofd As New OpenFileDialog With {.Filter = "Text Files (.txt)|*.txt"}
If ofd.ShowDialog = vbOK Then
Dim sr As IO.StreamReader = New IO.StreamReader(ofd.FileName)
proxies = sr.ReadToEnd
list = proxies.Split(Environment.NewLine)
End If
タイマーで私はこれを持っています:
Label6.Text = list(ProxyIndex)
UseProxy(list(ProxyIndex))
'here is where I am navigating to the website'
ProxyIndex += 1