|
-
Feb 10th, 2000, 04:59 AM
#1
Thread Starter
Junior Member
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
-
Feb 11th, 2000, 03:41 PM
#2
Lively Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|