Ok to learn im working on a chat program. It sends to all clients on and I have it sending multiple things but I want to organize it better so I can expand.

I have it sending info like this right now...

VB Code:
  1. Winsock.SendData txtNameBox.Text & ": " & txtchatBox.Text

My question is when its received how do you set them all to their own variable rather than all being in the same variable. This would be so I could display them all different places or whatever.

Such as Winsock.GetData Var1
Winsock.GetData Var2
Winsock.GetData Var3

Im sure thats wrong but any helpw ould be appreciated. THanks.