for connecting to another computer in a workgroup by name using sockets , which one should we use >>
1 )
TCPClient.Connect("\\ServerName",6000)
or
2 )
Dim ipAddress As IPAddress = Dns.Resolve("\\ServerName"").AddressList(0)
TCPClient.Connect(ipAddress,6000)
any help will be appreciated, thanks
