Auto proxy changer application code in VB .Net
The code given here is for making simple app in VB .Net which will read a proxy address from file specified in path field and then automatically change the proxy settings of PC to next proxy address from file after specified time amount. Note that file contains list of proxy addresses with port number in format as given below 0.0.0.0:80 1.1.1.1:8080 …………… ……………. i.e., ip address and port number. Form1.vb ----------------------------------------------------------------------------------Imports SystemImports System.Runtime.InteropServicesImports System.IOImports Microsoft.VisualBasicImports System.TimersPublic Class Form1 Dim FILE_NAME As String = "C:UsersDellDocuments12.txt" Dim label As String Public proxy(2000) As String Public index As Integer = 0 Public max_proxys As Integer=0 Dim a As String Dim start_check As Integer = 0 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Priv