Quote Originally Posted by putta
In the winsock recive data section

VB Code:
  1. dim TempStr as string
  2. dim TempArr() as string
  3. dim Username as string
  4. dim ChatBox as string
  5.  
  6. Winsock.GetData Var1
  7.  
  8. temparr() = split(TempStr,":") ' where ":" is the delimiter
  9.  
  10. Username = TempArr(0)
  11. ChatBox = TempArr(1)


Hope this helps!
So there you have ":" splitting the data, correct?

Also I would like to set it up to sendpackets but no experience with that. So instead of sending all data at once it sends when you call the packet.