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
Printable View
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
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