Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. whistller

    Adapt VB.NET proxy code o VB6

    I want You to ask for a help. how to adapt this VB.NET code to Visual Basic 6 ? Imports System.Collections.Generic Imports System.IO Imports System.Net Namespace blogtest Class Program Private Shared Sub Main(args As String()) Dim http As New simplehttp() ‘testing on ipcheckit.com so we can...
  2. whistller

    Proxy authentication

    I can`t get this to work: Private Sub Command6_Click() Dim header As String, Response As String Dim temp() As String Inet1.protocol = icHTTP Inet1.Proxy = "87.237.126.50:2448" Inet1.UserName = "userr" Inet1.Password = "pass" Inet1.URL = "http://whatismyipaddress.com/" header =...
  3. whistller

    Proxy authentication

    Finally I got something, what is wrong ? Private Sub Command6_Click() Dim header As String Inet1.UserName = username Inet1.Password = password Inet1.Proxy = "192.168.120.120:17890" Inet1.AccessType = icNamedProxy header = "Proxy-Authorization: Basic " & Inet1.UserName & ":" & Inet1.Password...
  4. whistller

    Proxy authentication

    Hi, I have created web browser that surf to the internet through proxy and now I need to create a browser that surf to internet via proxy authentication server (server required enter username and password) and I dont know what command to write.. Maybe something has a small example ? Pls, help

Part and Inventory Search

Back
Top