Sets the internet proxy to use for http access.
HttpSetProxy ( mode [, "proxy:port" [, "username", "password"]] )
Parameters
mode | The proxy mode to use: 0 = (default) Use current Internet Explorer settings for proxy. 1 = Use no proxy (direct access) 2 = Use the proxy specified |
proxy:port | [optional] The address and port of the proxy to use. See remarks below. |
username | [optional] If required, the username for the proxy |
password | [optional] If required, the password for the proxy |
Return Value
Success: | Returns 1. |
Failure: | Returns 0. |
Remarks
Internet Explorer 3 or greater must be installed for this function to work.
Related
FtpSetProxy, InetGet, InetGetSize
Example
; Use no proxy
HttpSetProxy(1)
; Use IE defaults for proxy
HttpSetProxy(0)
; Use the proxy "www-cache.myisp.net" on port 8080
HttpSetProxy(2, "www-cache.myisp.net:8080")