Results 1 to 2 of 2

Thread: Proxy Settings

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 2000
    Location
    Mesa, AZ, USA
    Posts
    16

    Post

    I am attempting to create a browser that will be restricted from navigating to certain sites or domains. How do I establish proxy settings. Any help is appreciated.

    Thanks

    Dubi

  2. #2
    Lively Member
    Join Date
    Nov 1999
    Location
    Melbourne, Victoria, Australia
    Posts
    126

    Post

    You will need to manually connect thourgh the proxy using sockets...

    The following code will connect to the specified proxy on the specfic port and request what ever URL is in URLText.Text

    For exmaple...

    URLText.Text = "http://www.vb-world.net"

    This code isn't prefect nor is it tested.
    But it should give you some ideas on how to do it via a proxy.

    on Connect_Click()
    sckProxy.connect "proxy.yourisp.com", 8080
    End Sub

    on sckProxy_Connect()
    sckProxy.senddata "GET " & URLText.Text & " HTTP/1.1" & vbcrlf & vbcrlf
    End Sub

    ------------------
    Regards,

    Paul Rivoli
    -------------------
    [email protected]
    http://users.bigpond.com/privoli

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width