winsocket vb.net
Imports System.Net ' for IPAddress Imports System.Net.Sockets 'for TcpListener Module Module1 Sub Main() Dim port As Integer 'this is the port number Dim localAddr As IPAddress ' this is the IP address Dim server As TcpListener ' This is for the TCP/IP Protocol Try 'define the two values for your Server port = 1234 localAddr = IPAddress .Loopback 'loopbak = 127.0.0.1 = myself 'Create your server server = New...