Hey guys need alittle help, I am setting a proxy for a browser using the RefreshIESettings method. It picks a proxy at random from a listbox, but i need to display to the user what proxy is in use is there a simple way of doing this without using a ip site or something. I mean as it's picking a proxy from the list at random im not sure how to tell witch one is in use.
Method im using
Code:
Dim myRandom As New Random
Dim i As Integer = ListBox2.Items.Count
RefreshIESettings(ListBox2.Items.Item(myRandom.Next(i)))
Thanks