Results 1 to 3 of 3
  1. #1
    silentrunner2's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Posts
    629
    Reputation
    110
    Thanks
    2,870
    My Mood
    Busy

    Retrieve IE Proxy

    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
    Last edited by silentrunner2; 05-28-2013 at 05:42 PM.
    My Projects


    Don't Ask For Thanks Earn It
    You: "Please Give Thanks"
    Me: "...................No"

  2. #2
    atom0s's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    403
    Reputation
    139
    Thanks
    104
    Store the picked item in a variable first:
    Code:
    	Dim myRandom As New Random
    	Dim i As Integer = ListBox2.Items.Count
    	Dim item = ListBox2.Items.Item(myRandom.Next(i))
    	RefreshIESettings(item)
    	// Do something with 'item' now to display which was picked.

  3. The Following User Says Thank You to atom0s For This Useful Post:

    silentrunner2 (05-29-2013)

  4. #3
    silentrunner2's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Posts
    629
    Reputation
    110
    Thanks
    2,870
    My Mood
    Busy
    Quote Originally Posted by atom0s View Post
    Store the picked item in a variable first:
    Code:
    	Dim myRandom As New Random
    	Dim i As Integer = ListBox2.Items.Count
    	Dim item = ListBox2.Items.Item(myRandom.Next(i))
    	RefreshIESettings(item)
    	// Do something with 'item' now to display which was picked.
    Very simple i like it thanks buddy :-)

    Worked perfect thanks, Is there a method of turning the proxie back off or would you just set RefreshIESettings to blank or something.
    Last edited by silentrunner2; 05-29-2013 at 05:08 AM.
    My Projects


    Don't Ask For Thanks Earn It
    You: "Please Give Thanks"
    Me: "...................No"

Similar Threads

  1. Anonymous Proxy List
    By Dave84311 in forum Spammers Corner
    Replies: 22
    Last Post: 02-12-2016, 02:51 AM
  2. Proxies And Wordlists
    By Flawless in forum Spammers Corner
    Replies: 13
    Last Post: 08-11-2015, 03:10 PM
  3. Proxy
    By f1br3opt1c in forum Spammers Corner
    Replies: 5
    Last Post: 04-19-2009, 11:47 AM
  4. Proxy sits
    By Bubba in forum General Game Hacking
    Replies: 7
    Last Post: 06-06-2006, 08:03 AM
  5. 2006Jan27 Proxie/Word List.
    By Flawless in forum Spammers Corner
    Replies: 10
    Last Post: 04-10-2006, 08:09 PM