Please Bruce, I need to sort this problem!
NT5 PR28
If I use:
ThisWebClient.CanUseProxy = 1 ! Can use Internet Explorer Proxy settings
It does not work.
If I use some code like:
ThisWebClient.ProxyServer = Glo:PARproxyURL
ThisWebClient.ProxyPort = Glo:PARproxyPuerto
if Glo:PARproxyUsu<>''
AuthStr = clip(Glo:PARproxyUsu) & ':' & clip(Glo:PARproxyPass)
AuthStrLen = len (clip(AuthStr))
ThisWebClient.ProxyAuthorization = 'Basic ' & NetBase64Encode (clip(AuthStr), AuthStrLen)
END
It works.
PD: Where in IE or FB do you set the User and Pass for the ProxyAuthorization?
Thanks
Alberto