I want to connect to the internet w/ the inet control and use a list of proxies in a txt. file. I want the inet to connect to the internet using a random proxy from the list. How can this be done?
Printable View
I want to connect to the internet w/ the inet control and use a list of proxies in a txt. file. I want the inet to connect to the internet using a random proxy from the list. How can this be done?
Load the textfile in an array using Open File For Binary...
and the split function (you could split it with VbCrLf as delimeter), and then pick a random array-item (with Rnd and Randomize), then just set the Inet1.Proxy to the Array-Item you just selected and done!
Can anyone post some source code for this question? I'm just a newbie.