You are viewing our Forum Archives. To view or take place in current topics click here.
C Sharp - Using Proxy List?
Posted:

C Sharp - Using Proxy List?Posted:

redbaby92
  • 2 Million
Status: Offline
Joined: Mar 27, 200915Year Member
Posts: 49
Reputation Power: 3
Status: Offline
Joined: Mar 27, 200915Year Member
Posts: 49
Reputation Power: 3
How am i able to create a button which adds a proxy list and it uses it?
#2. Posted:
MarshMods
  • 2 Million
Status: Offline
Joined: Jan 22, 201113Year Member
Posts: 1,106
Reputation Power: 48
Status: Offline
Joined: Jan 22, 201113Year Member
Posts: 1,106
Reputation Power: 48
It should be under default settings, I really dont know
#3. Posted:
redbaby92
  • 2 Million
Status: Offline
Joined: Mar 27, 200915Year Member
Posts: 49
Reputation Power: 3
Status: Offline
Joined: Mar 27, 200915Year Member
Posts: 49
Reputation Power: 3
Where u getting default settings?
#4. Posted:
Z61
  • V5 Launch
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
redbaby92 wrote Where u getting default settings?

Exactly as they wrote they don't know they've probably never programmed a thing ever.
#5. Posted:
RDCA
  • TTG Contender
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 3,612
Reputation Power: 173
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 3,612
Reputation Power: 173
Also forgot this is Vb.net, not C# sorry. Its still pretty much the same code besides a couple "{" and ";".


Well I don't know how to do the proxy support, but this how to load the proxy into a listbox. Google it and I am sure you will found it though.


Imports System.IO
Public Class Form1

    Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        ListBox1.Items.Clear()
        Dim fdg As New OpenFileDialog
        fdg.ShowDialog()
        ListBox1.Items.AddRange(File.ReadAllLines(fdg.FileName))


    End Sub
End Class


That should get you started.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.