VB Project Source Code

Showing posts with label Proxy tutorial vb.net. Show all posts
Showing posts with label Proxy tutorial vb.net. Show all posts

Monday 1 June 2015

Proxy tutorial vb.net

Proxy tutorial vb.net




Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim sProxy As New IEProxy

        sProxy.SetProxy(TextBox1.Text)

    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Dim sProxy As New IEProxy
        sProxy.DisableProxy()
    End Sub
End Class



Imports System
Imports System.Runtime.InteropServices......