Click to See Complete Forum and Search --> : Proxy Settings
Dubi
Feb 10th, 2000, 03:59 AM
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
privoli
Feb 11th, 2000, 02:41 PM
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
-------------------
privoli@bigpond.com
http://users.bigpond.com/privoli
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.