ok
Proxye = Proxy.Text.ToString.Split(":")
Dim Proxyz As String = System.Net.Dns.GetHostByAddress(Proxye(0)).HostName.ToString
Client.Connect(Proxye(0), Proxye(1))
Dim ns As NetworkStream = Client.GetStream()
' Do a simple write.
Dim sendBytes As [byte]() = Encoding.ASCII.GetBytes("CONNECT " & Host.Text & ":" & port & " HTTP/1.1" & ControlChars.CrLf & "Host: " & host.Text & ":" & port & ControlChars.CrLf & ControlChars.CrLf)
ns.Write(sendBytes, 0, sendBytes.Length)
Simple. If you want to use a proxy for webpages you have to send a little more info.