I creating an application in visual studio where I have a client to request specific information to multiple servers. Someone Knows i can make this communication? For one server i know to create that, for many servers i dont have idea. Code example!!! One client for many servers!
For one server i have this code:
Try
client.Connect(IPAddress, PortNum)
RichTextBox1.Text() = "Connection is Accepted"
Catch ex As Exception
RichTextBox1.Text() = "Connection is Failed"
End Try