Thanks for example,
but i two problems:
1. When I want to send every message from every client to all connected clients (multiusers chat) I try with this:
Code:
For Each cc As ConnectedClient In clients
cc.SendMessage(receivedString)
Next
but problem is because when is connected 10-12 peoples and writing to much sometime happend that two, or more messages going in one LINE.
For example, if I send "test", my friend 1 send "test2" its showing like this:
stefanACM: testfriend1: test2
How to solve that ???
2. What is easiest way to transfer CLIENT LIST to every client ?
Thanks in advice