这可能是愚蠢的,但我真的不知道为什么会这样做:
正如您在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
答案 0 :(得分:1)
试试这个(固定):
Label6.Text = list(ProxyIndex).Trim
如果这不起作用,那么试试这个:
Label6.Text = list(ProxyIndex.replace(Environment.NewLine, string.empty))