ah.
You connect the client to the server in one of two ways, either you use the Connect method, or you specify a host and a port when you instanciate it:
orVB Code:
Dim Client As New System.Net.Sockets.TcpClient Client.Connect("127.0.0.1", 30320)
VB Code:
Dim Client As New System.Net.Sockets.TcpClient("127.0.0.1", 30320)




Reply With Quote